@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 • 1.33 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { InvoiceConsolidationLevel } from './invoiceConsolidationLevel.js';
import { InvoiceStatus } from './invoiceStatus.js';
/** Example schema for an `change_invoice_status` event */
export interface ChangeInvoiceStatusEventData {
/** Identifier for the transaction within the payment gateway. */
gatewayTransId?: string;
/** The monetary value associated with the linked payment, expressed in dollars. */
amount?: string;
/** The status of the invoice before any changes occurred. See [Invoice Statuses](https://maxio.zendesk.com/hc/en-us/articles/24252287829645-Advanced-Billing-Invoices-Overview#invoice-statuses) for more. */
fromStatus: InvoiceStatus;
/** The updated status of the invoice after changes have been made. See [Invoice Statuses](https://maxio.zendesk.com/hc/en-us/articles/24252287829645-Advanced-Billing-Invoices-Overview#invoice-statuses) for more. */
toStatus: InvoiceStatus;
consolidationLevel?: InvoiceConsolidationLevel;
[key: string]: unknown;
}
export declare const changeInvoiceStatusEventDataSchema: Schema<ChangeInvoiceStatusEventData>;
//# sourceMappingURL=changeInvoiceStatusEventData.d.ts.map