/** * 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 */ /** * Representing the currency used for an invoice. * @export */ export declare const InvoiceCurrency: { readonly Idr: "IDR"; readonly Usd: "USD"; readonly Thb: "THB"; readonly Vnd: "VND"; readonly Php: "PHP"; readonly Myr: "MYR"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type InvoiceCurrency = typeof InvoiceCurrency[keyof typeof InvoiceCurrency]; export declare function InvoiceCurrencyFromJSON(json: any): InvoiceCurrency; export declare function InvoiceCurrencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceCurrency; export declare function InvoiceCurrencyToJSON(value?: InvoiceCurrency | null): any;