UNPKG

@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 689 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { PrepaymentMethod } from './prepaymentMethod'; 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