/** * 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 available paylater channels used for invoice-related transactions. * @export */ export declare const PaylaterType: { readonly Kredivo: "KREDIVO"; readonly Akulaku: "AKULAKU"; readonly Uangme: "UANGME"; readonly Billease: "BILLEASE"; readonly Cashalo: "CASHALO"; readonly Atome: "ATOME"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type PaylaterType = typeof PaylaterType[keyof typeof PaylaterType]; export declare function PaylaterTypeFromJSON(json: any): PaylaterType; export declare function PaylaterTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaylaterType; export declare function PaylaterTypeToJSON(value?: PaylaterType | null): any;