/** * 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 KYCDocumentSubType: { readonly NationalId: "NATIONAL_ID"; readonly ConsularId: "CONSULAR_ID"; readonly VoterId: "VOTER_ID"; readonly PostalId: "POSTAL_ID"; readonly ResidencePermit: "RESIDENCE_PERMIT"; readonly TaxId: "TAX_ID"; readonly StudentId: "STUDENT_ID"; readonly MilitaryId: "MILITARY_ID"; readonly MedicalId: "MEDICAL_ID"; readonly Others: "OTHERS"; readonly XenditEnumDefaultFallback: "UNKNOWN_ENUM_VALUE"; }; export type KYCDocumentSubType = typeof KYCDocumentSubType[keyof typeof KYCDocumentSubType]; export declare function KYCDocumentSubTypeFromJSON(json: any): KYCDocumentSubType; export declare function KYCDocumentSubTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): KYCDocumentSubType; export declare function KYCDocumentSubTypeToJSON(value?: KYCDocumentSubType | null): any;