IndividualAccount

data class IndividualAccount(val name: AccountObjects.IndividualAccountName? = null, val email: String? = null, val ssnLastFour: String? = null, val phoneNumber: String? = null, val phoneCountryCode: String? = null, val address: AccountObjects.AccountBillingAddress? = null, val birthdate: String? = null, val ssn: String? = null)

Individual profile data for a personal account.

Constructors

Link copied to clipboard
constructor(name: AccountObjects.IndividualAccountName? = null, email: String? = null, ssnLastFour: String? = null, phoneNumber: String? = null, phoneCountryCode: String? = null, address: AccountObjects.AccountBillingAddress? = null, birthdate: String? = null, ssn: String? = null)

Properties

Link copied to clipboard

Residential address.

Link copied to clipboard
val birthdate: String? = null

Date of birth in YYYY-MM-DD format.

Link copied to clipboard
val email: String? = null

Contact email address.

Link copied to clipboard

The account holder's name components.

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

ISO country calling code for the phone number.

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

Contact phone number.

Link copied to clipboard
val ssn: String? = null

Full Social Security Number; omitted from most responses.

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

Last four digits of the Social Security Number.