BusinessAccount

data class BusinessAccount(val legalBusinessName: String?, val doingBusinessAs: String? = null, val businessType: String?, val email: String?, val website: String? = null, val description: String? = null, val einLastFour: String? = null, val mcc: String? = null, val naics: String? = null, val address: AccountObjects.AccountBillingAddress? = null, val phone: AccountObjects.AccountPhoneNumber? = null)

Business profile data for a business account.

Constructors

Link copied to clipboard
constructor(legalBusinessName: String?, doingBusinessAs: String? = null, businessType: String?, email: String?, website: String? = null, description: String? = null, einLastFour: String? = null, mcc: String? = null, naics: String? = null, address: AccountObjects.AccountBillingAddress? = null, phone: AccountObjects.AccountPhoneNumber? = null)

Properties

Link copied to clipboard

Business physical address.

Link copied to clipboard
@SerializedName(value = "business_type")
val businessType: String?

The type or structure of the business (e.g., LLC, sole proprietorship).

Link copied to clipboard
val description: String? = null

Brief description of the business.

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

Optional trade name or DBA name.

Link copied to clipboard
@SerializedName(value = "ein_last_four")
val einLastFour: String? = null

Last four digits of the Employer Identification Number.

Link copied to clipboard

Business contact email address.

Link copied to clipboard
@SerializedName(value = "legal_business_name")
val legalBusinessName: String?

The registered legal name of the business.

Link copied to clipboard
val mcc: String? = null

Merchant Category Code.

Link copied to clipboard
val naics: String? = null

North American Industry Classification System code.

Link copied to clipboard

Business phone number.

Link copied to clipboard
val website: String? = null

Business website URL.