@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.
23 lines • 695 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { PrepaymentMethod } from './prepaymentMethod.js';
export interface Prepayment {
id: number;
subscriptionId: number;
amountInCents: bigint;
remainingAmountInCents: bigint;
refundedAmountInCents?: bigint;
details?: string;
external: boolean;
memo: string;
/** The payment type of the prepayment. */
paymentType?: PrepaymentMethod;
createdAt: string;
[key: string]: unknown;
}
export declare const prepaymentSchema: Schema<Prepayment>;
//# sourceMappingURL=prepayment.d.ts.map