/** * 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 QR Code channels used for invoice-related transactions. * @export */ export declare const QrCodeType: { readonly Qris: "QRIS"; readonly Promptpay: "PROMPTPAY"; readonly Qrph: "QRPH"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type QrCodeType = typeof QrCodeType[keyof typeof QrCodeType]; export declare function QrCodeTypeFromJSON(json: any): QrCodeType; export declare function QrCodeTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): QrCodeType; export declare function QrCodeTypeToJSON(value?: QrCodeType | null): any;