BusinessInformationRequest

@Serializable
data class BusinessInformationRequest(val businessType: BusinessTypeModel? = null, val businessName: String? = null, val doingBusinessAs: String?, val countryOfIncorporation: CountryModel? = null, val phoneNumber: String? = null, val website: String? = null, val emailAddress: String? = null, val natureOfBusiness: String? = null, val accountPurpose: AccountPurposeTypeModel? = null, val accountPurposeDetails: String? = null, val tradingVolume: String? = null, val transactionVolume: String? = null, val sourceOfFunds: SourceOfFundsTypeModel? = null, val stateOfIncorporation: String? = null, val ein: String? = null, val companyId: String? = null, val vatNumber: String? = null, val incorporationDate: String? = null)

Account business information.

Constructors

Link copied to clipboard
constructor(businessType: BusinessTypeModel? = null, businessName: String? = null, doingBusinessAs: String? = null, stateOfIncorporation: String? = null, countryOfIncorporation: CountryModel? = null, ein: String? = null, phoneNumber: String? = null, website: String? = null, emailAddress: String? = null, natureOfBusiness: String? = null, accountPurpose: AccountPurposeTypeModel? = null, accountPurposeDetails: String? = null, tradingVolume: String? = null, transactionVolume: String? = null, sourceOfFunds: SourceOfFundsTypeModel? = null)

US business account.

constructor(businessType: BusinessTypeModel? = null, businessName: String? = null, doingBusinessAs: String? = null, countryOfIncorporation: CountryModel? = null, companyId: String? = null, vatNumber: String? = null, incorporationDate: String? = null, phoneNumber: String? = null, website: String? = null, emailAddress: String? = null, natureOfBusiness: String? = null, accountPurpose: AccountPurposeTypeModel? = null, accountPurposeDetails: String? = null, tradingVolume: String? = null, transactionVolume: String? = null, sourceOfFunds: SourceOfFundsTypeModel? = null)

EU business account.

constructor(businessType: BusinessTypeModel? = null, businessName: String? = null, doingBusinessAs: String?, countryOfIncorporation: CountryModel? = null, phoneNumber: String? = null, website: String? = null, emailAddress: String? = null, natureOfBusiness: String? = null, accountPurpose: AccountPurposeTypeModel? = null, accountPurposeDetails: String? = null, tradingVolume: String? = null, transactionVolume: String? = null, sourceOfFunds: SourceOfFundsTypeModel? = null, stateOfIncorporation: String? = null, ein: String? = null, companyId: String? = null, vatNumber: String? = null, incorporationDate: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "account_purpose")
val accountPurpose: AccountPurposeTypeModel? = null

The purpose of the account.

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

Additional details of the account purpose.

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

The name of the company.

Link copied to clipboard
@SerialName(value = "business_type")
val businessType: BusinessTypeModel? = null

The company type.

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

The ID number of the company.

Link copied to clipboard
@SerialName(value = "country_of_incorporation")
val countryOfIncorporation: CountryModel? = null

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? = null

The EIN of the company.

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

The company's email address.

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

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

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

The business industry classification, as specified in NAICS 2022.

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

The business' phone number in E.164 international standard.

Link copied to clipboard
@SerialName(value = "source_of_funds")
val sourceOfFunds: SourceOfFundsTypeModel? = null

The source of funds of the company.

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

The state of incorporation.

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

The yearly average trading volume of the business.

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

The yearly average transaction volume of the business.

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

The VAT number of the company.

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

The company's website.