/** * 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 KYCDocumentType: { readonly BirthCertificate: "BIRTH_CERTIFICATE"; readonly BankStatement: "BANK_STATEMENT"; readonly DrivingLicense: "DRIVING_LICENSE"; readonly IdentityCard: "IDENTITY_CARD"; readonly Passport: "PASSPORT"; readonly Visa: "VISA"; readonly BusinessRegistration: "BUSINESS_REGISTRATION"; readonly BusinessLicense: "BUSINESS_LICENSE"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type KYCDocumentType = typeof KYCDocumentType[keyof typeof KYCDocumentType]; export declare function KYCDocumentTypeFromJSON(json: any): KYCDocumentType; export declare function KYCDocumentTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): KYCDocumentType; export declare function KYCDocumentTypeToJSON(value?: KYCDocumentType | null): any;