/** * 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 DirectDebitType: { readonly DebitCard: "DEBIT_CARD"; readonly BankAccount: "BANK_ACCOUNT"; readonly BankRedirect: "BANK_REDIRECT"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type DirectDebitType = typeof DirectDebitType[keyof typeof DirectDebitType]; export declare function DirectDebitTypeFromJSON(json: any): DirectDebitType; export declare function DirectDebitTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DirectDebitType; export declare function DirectDebitTypeToJSON(value?: DirectDebitType | null): any;