/** * 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 AccountPayLater */ export interface AccountPayLater { /** * Alphanumeric string identifying this account. Usually an email address or phone number. * @type {string} * @memberof AccountPayLater */ accountId?: string; /** * Name of account holder as per the cardless credit account. * @type {string} * @memberof AccountPayLater */ accountHolderName?: string | null; /** * * @type {string} * @memberof AccountPayLater */ currency?: string; } /** * Check if a given object implements the AccountPayLater interface. */ export declare function instanceOfAccountPayLater(value: object): boolean; export declare function AccountPayLaterFromJSON(json: any): AccountPayLater; export declare function AccountPayLaterFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountPayLater; export declare function AccountPayLaterToJSON(value?: AccountPayLater | null): any;