/** * 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 AccountEwallet */ export interface AccountEwallet { /** * Unique account identifier as per the bank records. * @type {string} * @memberof AccountEwallet */ accountNumber?: string; /** * Name of account holder as per the bank records. Needs to match the registered account name exactly. * @type {string} * @memberof AccountEwallet */ accountHolderName?: string | null; /** * * @type {string} * @memberof AccountEwallet */ currency?: string; } /** * Check if a given object implements the AccountEwallet interface. */ export declare function instanceOfAccountEwallet(value: object): boolean; export declare function AccountEwalletFromJSON(json: any): AccountEwallet; export declare function AccountEwalletFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountEwallet; export declare function AccountEwalletToJSON(value?: AccountEwallet | null): any;