@airwallex/node-sdk
Version:
Airwallex Node.js SDK
83 lines • 6.86 kB
TypeScript
import { Address } from './address';
import { Attachment } from './attachment';
import { BusinessIdentifierItem } from './businessIdentifierItem';
import { BusinessName } from './businessName';
import { MutableWebsiteCollectionDTO } from './mutableWebsiteCollectionDTO';
import { ShareHoldingDTO } from './shareHoldingDTO';
import { TaxIdDTO } from './taxIdDTO';
import { TermsAndConditions } from './termsAndConditions';
import { VatNumberDTO } from './vatNumberDTO';
export interface BusinessDetailsDTO {
activities_in_prohibited_countries?: string;
additional_trading_names: Array<string>;
additional_urls?: Array<string>;
address?: Address;
address_english?: Address;
agreed_to_data_usage?: boolean;
agreed_to_payment_terms?: boolean;
agreed_to_terms?: boolean;
agreed_to_tri_party_agreement?: boolean;
all_partners_are_individuals?: boolean;
attachments: {
[key: string]: Array<Attachment>;
};
business_address?: Address;
business_name?: string;
business_name_english?: string;
business_registration_number?: string;
business_structure?: BusinessDetailsDTO.BusinessStructureEnum;
complexity_of_ownership_structure?: string;
contact_name?: string;
contact_number?: string;
date_of_incorporation?: string;
description_of_goods_or_services?: string;
description_of_industry?: string;
duns_number?: string;
industry_category?: string;
industry_category_v3_code?: string;
industry_complementary_category?: string;
industry_sub_category?: string;
mcc_code_list: Array<string>;
no_partnership_agreement?: boolean;
not_officially_registered?: boolean;
online_client?: boolean;
online_presence?: string;
online_presence_status?: string;
operating_country?: Array<BusinessDetailsDTO.OperatingCountryEnum>;
opt_in_for_marketing?: boolean;
other_business_identifiers: Array<BusinessIdentifierItem>;
other_business_names: Array<BusinessName>;
purpose?: string;
raw_business_structure?: string;
registered_country?: BusinessDetailsDTO.RegisteredCountryEnum;
registration_address?: Address;
secondary_industry_category_v3_code?: string;
share_holders: Array<ShareHoldingDTO>;
share_holding?: ShareHoldingDTO;
state_of_incorporation?: string;
stock_exchange_listing?: string;
tax_id?: TaxIdDTO;
terms_and_conditions?: TermsAndConditions;
trading_name?: string;
trust?: boolean;
trust_name?: string;
url?: string;
vat_numbers?: Array<VatNumberDTO>;
website_collection?: MutableWebsiteCollectionDTO;
without_url_flag: boolean;
}
export declare namespace BusinessDetailsDTO {
const validBusinessStructureEnum: readonly ["COMPANY", "PARTNERSHIP", "SOLE_TRADER", "SOLE_PROPRIETOR", "ASSOCIATION", "LIMITED_COMPANY", "LIMITED_LIABILITY_PARTNERSHIP", "LIMITED_PARTNERSHIP", "GENERAL_PARTNERSHIP", "SOLE_TRADER_UK", "TRUST", "SELF_MANAGED_SUPER_FUND", "LIMITED_LIABILITY_COMPANY", "CORPORATION", "OTHER"];
type BusinessStructureEnum = (typeof validBusinessStructureEnum)[number] | 'UNKNOWN';
const validOperatingCountryEnum: readonly ["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"];
type OperatingCountryEnum = (typeof validOperatingCountryEnum)[number] | 'UNKNOWN';
const validRegisteredCountryEnum: readonly ["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"];
type RegisteredCountryEnum = (typeof validRegisteredCountryEnum)[number] | 'UNKNOWN';
const discriminator: string;
const attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
}
//# sourceMappingURL=businessDetailsDTO.d.ts.map