/** * 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 AccountOTC */ export interface AccountOTC { /** * Complete fixed payment code (including prefix) * @type {string} * @memberof AccountOTC */ paymentCode?: string; /** * YYYY-MM-DD string with expiry date for the payment code * @type {string} * @memberof AccountOTC */ expiresAt?: string | null; } /** * Check if a given object implements the AccountOTC interface. */ export declare function instanceOfAccountOTC(value: object): boolean; export declare function AccountOTCFromJSON(json: any): AccountOTC; export declare function AccountOTCFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountOTC; export declare function AccountOTCToJSON(value?: AccountOTC | null): any;