BusinessInformationDetailsModel

data class BusinessInformationDetailsModel(@Json(name = "business_type") val businessTypeString: String, @Json(ignore = true) val businessType: BusinessTypeModel? = businessTypeString.getEnum<BusinessTypeModel>(), @Json(name = "business_name") val businessName: String, @Json(name = "doing_business_as") val doingBusinessAs: String?, @Json(name = "country_of_incorporation") val countryOfIncorporationString: String, @Json(ignore = true) val countryOfIncorporation: CountryModel? = countryOfIncorporationString.getEnum<CountryModel>(), @Json(name = "phone_number") val phoneNumber: String?, @Json(name = "website") val website: String?, @Json(name = "email_address") val emailAddress: String?, @Json(name = "nature_of_business") val natureOfBusiness: String?, @Json(name = "account_purpose") val accountPurposeString: String?, @Json(ignore = true) val accountPurpose: AccountPurposeTypeModel? = accountPurposeString?.getEnum<AccountPurposeTypeModel>(), @Json(name = "account_purpose_details") val accountPurposeDetails: String?, @Json(name = "trading_volume") val tradingVolume: String?, @Json(name = "transaction_volume") val transactionVolume: String?, @Json(name = "source_of_funds") val sourceOfFundsString: String?, @Json(ignore = true) val sourceOfFunds: AccountStatusModel? = sourceOfFundsString?.getEnum<AccountStatusModel>(), @Json(name = "state_of_incorporation") val stateOfIncorporation: String?, @Json(name = "ein") val ein: String?, @Json(name = "company_id") val companyId: String?, @Json(name = "vat_number") val vatNumber: String?, @Json(name = "incorporation_date") val incorporationDate: String?)

Account business information.

Constructors

Link copied to clipboard
constructor(@Json(name = "business_type") businessTypeString: String, @Json(ignore = true) businessType: BusinessTypeModel? = businessTypeString.getEnum<BusinessTypeModel>(), @Json(name = "business_name") businessName: String, @Json(name = "doing_business_as") doingBusinessAs: String?, @Json(name = "country_of_incorporation") countryOfIncorporationString: String, @Json(ignore = true) countryOfIncorporation: CountryModel? = countryOfIncorporationString.getEnum<CountryModel>(), @Json(name = "phone_number") phoneNumber: String?, @Json(name = "website") website: String?, @Json(name = "email_address") emailAddress: String?, @Json(name = "nature_of_business") natureOfBusiness: String?, @Json(name = "account_purpose") accountPurposeString: String?, @Json(ignore = true) accountPurpose: AccountPurposeTypeModel? = accountPurposeString?.getEnum<AccountPurposeTypeModel>(), @Json(name = "account_purpose_details") accountPurposeDetails: String?, @Json(name = "trading_volume") tradingVolume: String?, @Json(name = "transaction_volume") transactionVolume: String?, @Json(name = "source_of_funds") sourceOfFundsString: String?, @Json(ignore = true) sourceOfFunds: AccountStatusModel? = sourceOfFundsString?.getEnum<AccountStatusModel>(), @Json(name = "state_of_incorporation") stateOfIncorporation: String?, @Json(name = "ein") ein: String?, @Json(name = "company_id") companyId: String?, @Json(name = "vat_number") vatNumber: String?, @Json(name = "incorporation_date") incorporationDate: String?)

Properties

Link copied to clipboard

Account purpose. Check accountPurposeString if null.

Link copied to clipboard

Additional details of the account purpose.

Link copied to clipboard

Account purpose.

Link copied to clipboard

Business name.

Link copied to clipboard

Business type. Check businessTypeString if null.

Link copied to clipboard

Business type.

Link copied to clipboard

Company identifier.

Link copied to clipboard
val countryOfIncorporation: CountryModel?

The country of incorporation. 3-letter country code (ISO 3166-1 alpha-3). Check countryOfIncorporationString if null.

Link copied to clipboard

The country of incorporation. 3-letter country code (ISO 3166-1 alpha-3).

Link copied to clipboard

Doing Business As.

Link copied to clipboard
val ein: String?

The EIN of the company.

Link copied to clipboard

Business email address.

Link copied to clipboard

The date the company was started in the format "yyyy-mm-dd".

Link copied to clipboard

Business industry classification, as specified in NAICS 2022.

Link copied to clipboard

Business phone number in E.164 international standard.

Link copied to clipboard

Business source of funds. Check sourceOfFundsString if null.

Link copied to clipboard

Business source of funds.

Link copied to clipboard

The state of incorporation.

Link copied to clipboard

The yearly average trading volume of the business.

Link copied to clipboard

The yearly average transaction volume of the business.

Link copied to clipboard

Company VAT number.

Link copied to clipboard

Business website.