@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.
22 lines • 889 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { InvoicePaymentMethodType } from './invoicePaymentMethodType';
/** Example schema for an `failed_payment` event */
export interface FailedPaymentEventData {
/** The monetary value of the payment, expressed in cents. */
amountInCents: number;
/** The monetary value of the payment, expressed in dollars. */
appliedAmount: number;
/** The memo passed when the payment was created. */
memo?: string | null;
paymentMethod: InvoicePaymentMethodType;
/** The transaction ID of the failed payment. */
transactionId: number;
[key: string]: unknown;
}
export declare const failedPaymentEventDataSchema: Schema<FailedPaymentEventData>;
//# sourceMappingURL=failedPaymentEventData.d.ts.map