/** * 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 retail outlet channels used for invoice-related transactions. * @export */ export declare const RetailOutletName: { readonly Alfamart: "ALFAMART"; readonly Indomaret: "INDOMARET"; readonly _7Eleven: "7ELEVEN"; readonly Cebuana: "CEBUANA"; readonly DpEcpayLoan: "DP_ECPAY_LOAN"; readonly DpMlhuillier: "DP_MLHUILLIER"; readonly DpPalawan: "DP_PALAWAN"; readonly DpEcpaySchool: "DP_ECPAY_SCHOOL"; readonly Lbc: "LBC"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type RetailOutletName = typeof RetailOutletName[keyof typeof RetailOutletName]; export declare function RetailOutletNameFromJSON(json: any): RetailOutletName; export declare function RetailOutletNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): RetailOutletName; export declare function RetailOutletNameToJSON(value?: RetailOutletName | null): any;