/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export * @interface PaymentSimulation */ export interface PaymentSimulation { /** * * @type {string} * @memberof PaymentSimulation */ status?: string; /** * * @type {string} * @memberof PaymentSimulation */ message?: string; } /** * Check if a given object implements the PaymentSimulation interface. */ export declare function instanceOfPaymentSimulation(value: object): boolean; export declare function PaymentSimulationFromJSON(json: any): PaymentSimulation; export declare function PaymentSimulationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentSimulation; export declare function PaymentSimulationToJSON(value?: PaymentSimulation | null): any;