/** * 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 TransactionTypes: { readonly BatchDisbursement: "BATCH_DISBURSEMENT"; readonly Disbursement: "DISBURSEMENT"; readonly Payment: "PAYMENT"; readonly Remittance: "REMITTANCE"; readonly RemittancePayout: "REMITTANCE_PAYOUT"; readonly RemittanceCollection: "REMITTANCE_COLLECTION"; readonly Transfer: "TRANSFER"; readonly PlatformFee: "PLATFORM_FEE"; readonly Refund: "REFUND"; readonly Cashback: "CASHBACK"; readonly Topup: "TOPUP"; readonly Withdrawal: "WITHDRAWAL"; readonly Other: "OTHER"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type TransactionTypes = typeof TransactionTypes[keyof typeof TransactionTypes]; export declare function TransactionTypesFromJSON(json: any): TransactionTypes; export declare function TransactionTypesFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionTypes; export declare function TransactionTypesToJSON(value?: TransactionTypes | null): any;