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.

17 lines 734 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface InvoicePaymentApplication { /** Unique identifier for the paid invoice. It has the prefix "inv_" followed by alphanumeric characters. */ invoiceUid?: string; /** Unique identifier for the payment. It has the prefix "pmt_" followed by alphanumeric characters. */ applicationUid?: string; /** Dollar amount of the paid invoice. */ appliedAmount?: string; [key: string]: unknown; } export declare const invoicePaymentApplicationSchema: Schema<InvoicePaymentApplication>; //# sourceMappingURL=invoicePaymentApplication.d.ts.map