BusinessInformationDetailsModel

@Serializable
data class BusinessInformationDetailsModel(val businessTypeString: String, val businessType: BusinessTypeModel? = businessTypeString.getEnum<BusinessTypeModel>(), val businessName: String, val doingBusinessAs: String?, val countryOfIncorporationString: String, val countryOfIncorporation: CountryModel? = countryOfIncorporationString.getEnum<CountryModel>(), val phoneNumber: String?, val website: String?, val emailAddress: String?, val natureOfBusiness: String?, val accountPurposeString: String?, val accountPurpose: AccountPurposeTypeModel? = accountPurposeString?.getEnum<AccountPurposeTypeModel>(), val accountPurposeDetails: String?, val tradingVolume: String?, val transactionVolume: String?, val sourceOfFundsString: String?, val sourceOfFunds: AccountStatusModel? = sourceOfFundsString?.getEnum<AccountStatusModel>(), val stateOfIncorporation: String?, val ein: String?, val companyId: String?, val vatNumber: String?, val incorporationDate: String?)

Account business information.

Constructors

Link copied to clipboard
constructor(businessTypeString: String, businessType: BusinessTypeModel? = businessTypeString.getEnum<BusinessTypeModel>(), businessName: String, doingBusinessAs: String?, countryOfIncorporationString: String, countryOfIncorporation: CountryModel? = countryOfIncorporationString.getEnum<CountryModel>(), phoneNumber: String?, website: String?, emailAddress: String?, natureOfBusiness: String?, accountPurposeString: String?, accountPurpose: AccountPurposeTypeModel? = accountPurposeString?.getEnum<AccountPurposeTypeModel>(), accountPurposeDetails: String?, tradingVolume: String?, transactionVolume: String?, sourceOfFundsString: String?, sourceOfFunds: AccountStatusModel? = sourceOfFundsString?.getEnum<AccountStatusModel>(), stateOfIncorporation: String?, ein: String?, companyId: String?, vatNumber: String?, incorporationDate: String?)

Properties

Link copied to clipboard

Account purpose. Check accountPurposeString if null.

Link copied to clipboard
@SerialName(value = "account_purpose_details")
val accountPurposeDetails: String?

Additional details of the account purpose.

Link copied to clipboard
@SerialName(value = "account_purpose")
val accountPurposeString: String?

Account purpose.

Link copied to clipboard
@SerialName(value = "business_name")
val businessName: String

Business name.

Link copied to clipboard

Business type. Check businessTypeString if null.

Link copied to clipboard
@SerialName(value = "business_type")
val businessTypeString: String

Business type.

Link copied to clipboard
@SerialName(value = "company_id")
val companyId: String?

Company identifier.

Link copied to clipboard
@Transient
val countryOfIncorporation: CountryModel?

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

Link copied to clipboard
@SerialName(value = "country_of_incorporation")
val countryOfIncorporationString: String

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

Link copied to clipboard
@SerialName(value = "doing_business_as")
val doingBusinessAs: String?

Doing Business As.

Link copied to clipboard
@SerialName(value = "ein")
val ein: String?

The EIN of the company.

Link copied to clipboard
@SerialName(value = "email_address")
val emailAddress: String?

Business email address.

Link copied to clipboard
@SerialName(value = "incorporation_date")
val incorporationDate: String?

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

Link copied to clipboard
@SerialName(value = "nature_of_business")
val natureOfBusiness: String?

Business industry classification, as specified in NAICS 2022.

Link copied to clipboard
@SerialName(value = "phone_number")
val phoneNumber: String?

Business phone number in E.164 international standard.

Link copied to clipboard

Business source of funds. Check sourceOfFundsString if null.

Link copied to clipboard
@SerialName(value = "source_of_funds")
val sourceOfFundsString: String?

Business source of funds.

Link copied to clipboard
@SerialName(value = "state_of_incorporation")
val stateOfIncorporation: String?

The state of incorporation.

Link copied to clipboard
@SerialName(value = "trading_volume")
val tradingVolume: String?

The yearly average trading volume of the business.

Link copied to clipboard
@SerialName(value = "transaction_volume")
val transactionVolume: String?

The yearly average transaction volume of the business.

Link copied to clipboard
@SerialName(value = "vat_number")
val vatNumber: String?

Company VAT number.

Link copied to clipboard
@SerialName(value = "website")
val website: String?

Business website.