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.

18 lines 819 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreatePrepaymentMethod } from './createPrepaymentMethod'; export interface CreatePrepayment { amount: number; details: string; memo: string; /** :- When the `method` specified is `"credit_card_on_file"`, the prepayment amount will be collected using the default credit card payment profile and applied to the prepayment account balance. This is especially useful for manual replenishment of prepaid subscriptions. */ method: CreatePrepaymentMethod; paymentProfileId?: number; [key: string]: unknown; } export declare const createPrepaymentSchema: Schema<CreatePrepayment>; //# sourceMappingURL=createPrepayment.d.ts.map