@maxio-com/advanced-billing-sdk
Version:
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
22 lines • 1.01 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { AccountBalance } from './accountBalance.js';
export interface AccountBalances {
/** The balance, in cents, of the sum of the subscription's open, payable invoices. */
openInvoices?: AccountBalance;
/** The balance, in cents, of the sum of the subscription's pending, payable invoices. */
pendingInvoices?: AccountBalance;
/** The balance, in cents, of the subscription's Pending Discount account. */
pendingDiscounts?: AccountBalance;
/** The balance, in cents, of the subscription's Service Credit account. */
serviceCredits?: AccountBalance;
/** The balance, in cents, of the subscription's Prepayment account. */
prepayments?: AccountBalance;
[key: string]: unknown;
}
export declare const accountBalancesSchema: Schema<AccountBalances>;
//# sourceMappingURL=accountBalances.d.ts.map