UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

399 lines 7.29 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IndividualDetailsDTO = void 0; var IndividualDetailsDTO; (function (IndividualDetailsDTO) { IndividualDetailsDTO.validNationalityEnum = [ 'UNDEFINED', 'AC', 'AD', 'AE', 'AF', 'AG', 'AI', 'AL', 'AM', 'AN', 'AO', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AW', 'AX', 'AZ', 'BA', 'BB', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BL', 'BM', 'BN', 'BO', 'BQ', 'BR', 'BS', 'BT', 'BU', 'BV', 'BW', 'BY', 'BZ', 'CA', 'CC', 'CD', 'CF', 'CG', 'CH', 'CI', 'CK', 'CL', 'CM', 'CN', 'CO', 'CP', 'CR', 'CS', 'CU', 'CV', 'CW', 'CX', 'CY', 'CZ', 'DE', 'DG', 'DJ', 'DK', 'DM', 'DO', 'DZ', 'EA', 'EC', 'EE', 'EG', 'EH', 'ER', 'ES', 'ET', 'EU', 'EZ', 'FI', 'FJ', 'FK', 'FM', 'FO', 'FR', 'FX', 'GA', 'GB', 'GD', 'GE', 'GF', 'GG', 'GH', 'GI', 'GL', 'GM', 'GN', 'GP', 'GQ', 'GR', 'GS', 'GT', 'GU', 'GW', 'GY', 'HK', 'HM', 'HN', 'HR', 'HT', 'HU', 'IC', 'ID', 'IE', 'IL', 'IM', 'IN', 'IO', 'IQ', 'IR', 'IS', 'IT', 'JE', 'JM', 'JO', 'JP', 'KE', 'KG', 'KH', 'KI', 'KM', 'KN', 'KP', 'KR', 'KW', 'KY', 'KZ', 'LA', 'LB', 'LC', 'LI', 'LK', 'LR', 'LS', 'LT', 'LU', 'LV', 'LY', 'MA', 'MC', 'MD', 'ME', 'MF', 'MG', 'MH', 'MK', 'ML', 'MM', 'MN', 'MO', 'MP', 'MQ', 'MR', 'MS', 'MT', 'MU', 'MV', 'MW', 'MX', 'MY', 'MZ', 'NA', 'NC', 'NE', 'NF', 'NG', 'NI', 'NL', 'NO', 'NP', 'NR', 'NT', 'NU', 'NZ', 'OM', 'PA', 'PE', 'PF', 'PG', 'PH', 'PK', 'PL', 'PM', 'PN', 'PR', 'PS', 'PT', 'PW', 'PY', 'QA', 'RE', 'RO', 'RS', 'RU', 'RW', 'SA', 'SB', 'SC', 'SD', 'SE', 'SF', 'SG', 'SH', 'SI', 'SJ', 'SK', 'SL', 'SM', 'SN', 'SO', 'SR', 'SS', 'ST', 'SU', 'SV', 'SX', 'SY', 'SZ', 'TA', 'TC', 'TD', 'TF', 'TG', 'TH', 'TJ', 'TK', 'TL', 'TM', 'TN', 'TO', 'TP', 'TR', 'TT', 'TV', 'TW', 'TZ', 'UA', 'UG', 'UK', 'UM', 'US', 'UY', 'UZ', 'VA', 'VC', 'VE', 'VG', 'VI', 'VN', 'VU', 'WF', 'WS', 'XI', 'XU', 'XK', 'YE', 'YT', 'YU', 'ZA', 'ZM', 'ZR', 'ZW', ]; IndividualDetailsDTO.discriminator = 'IndividualDetailsDTO'; IndividualDetailsDTO.attributeTypeMap = [ { name: 'first_name', baseName: 'first_name', type: 'string', }, { name: 'middle_name', baseName: 'middle_name', type: 'string', }, { name: 'first_name_english', baseName: 'first_name_english', type: 'string', }, { name: 'last_name', baseName: 'last_name', type: 'string', }, { name: 'last_name_english', baseName: 'last_name_english', type: 'string', }, { name: 'email', baseName: 'email', type: 'string', }, { name: 'nationality', baseName: 'nationality', type: 'IndividualDetailsDTO.NationalityEnum', }, { name: 'date_of_birth', baseName: 'date_of_birth', type: 'string', }, { name: 'address', baseName: 'address', type: 'Address', }, { name: 'address_english', baseName: 'address_english', type: 'Address', }, { name: 'phone_number', baseName: 'phone_number', type: 'string', }, { name: 'face_photo_file_id', baseName: 'face_photo_file_id', type: 'string', }, { name: 'photo_holding_identification_file_id', baseName: 'photo_holding_identification_file_id', type: 'string', }, { name: 'reason_for_duplicate_account', baseName: 'reason_for_duplicate_account', type: 'string', }, { name: 'primary_document', baseName: 'primary_document', type: 'object', }, { name: 'secondary_document', baseName: 'secondary_document', type: 'object', }, { name: 'user_identifier_on_platform', baseName: 'user_identifier_on_platform', type: 'string', }, { name: 'attachments', baseName: 'attachments', type: '{ [key: string]: Array<Attachment>; }', }, { name: 'pep', baseName: 'pep', type: 'boolean', }, { name: 'other_names', baseName: 'other_names', type: 'Array<OtherName>', }, { name: 'occupation', baseName: 'occupation', type: 'string', }, { name: 'employer', baseName: 'employer', type: 'Employer', }, { name: 'estimated_monthly_income', baseName: 'estimated_monthly_income', type: 'IncomeVolume', }, ]; })(IndividualDetailsDTO || (exports.IndividualDetailsDTO = IndividualDetailsDTO = {})); //# sourceMappingURL=individualDetailsDTO.js.map