/** * 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 */ export declare const IdentityAccountType: { readonly BankAccount: "BANK_ACCOUNT"; readonly Ewallet: "EWALLET"; readonly CreditCard: "CREDIT_CARD"; readonly PayLater: "PAY_LATER"; readonly Otc: "OTC"; readonly QrCode: "QR_CODE"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type IdentityAccountType = typeof IdentityAccountType[keyof typeof IdentityAccountType]; export declare function IdentityAccountTypeFromJSON(json: any): IdentityAccountType; export declare function IdentityAccountTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentityAccountType; export declare function IdentityAccountTypeToJSON(value?: IdentityAccountType | null): any;