/** * 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 */ /** * An object representing payment details. * @export * @interface PaymentDetails */ export interface PaymentDetails { /** * The unique identifier or reference ID associated with the payment receipt. * @type {string} * @memberof PaymentDetails */ receiptId?: string; /** * The source or method of payment. * @type {string} * @memberof PaymentDetails */ source?: string; } /** * Check if a given object implements the PaymentDetails interface. */ export declare function instanceOfPaymentDetails(value: object): boolean; export declare function PaymentDetailsFromJSON(json: any): PaymentDetails; export declare function PaymentDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentDetails; export declare function PaymentDetailsToJSON(value?: PaymentDetails | null): any;