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