/** * 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 AccountCard */ export interface AccountCard { /** * The token id returned in tokenisation * @type {string} * @memberof AccountCard */ tokenId?: string; } /** * Check if a given object implements the AccountCard interface. */ export declare function instanceOfAccountCard(value: object): boolean; export declare function AccountCardFromJSON(json: any): AccountCard; export declare function AccountCardFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountCard; export declare function AccountCardToJSON(value?: AccountCard | null): any;