UpdateIndividualAccount

data class UpdateIndividualAccount(val name: AccountRequests.UpdateAccountInfo? = null, val email: String? = null, val phoneNumber: String? = null, val phoneCountryCode: String? = null, val address: FrameObjects.BillingAddress? = null, val birthdate: String? = null, val ssn: String? = null, val ssnLast4: String? = null, val profileURL: String? = null)

Updated profile data for an individual account holder.

Constructors

Link copied to clipboard
constructor(name: AccountRequests.UpdateAccountInfo? = null, email: String? = null, phoneNumber: String? = null, phoneCountryCode: String? = null, address: FrameObjects.BillingAddress? = null, birthdate: String? = null, ssn: String? = null, ssnLast4: String? = null, profileURL: String? = null)

Properties

Link copied to clipboard

Updated residential address.

Link copied to clipboard
val birthdate: String? = null

Updated date of birth in YYYY-MM-DD format.

Link copied to clipboard
val email: String? = null

Updated contact email address.

Link copied to clipboard

Updated name components.

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

ISO country calling code for the updated phone number.

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

Updated contact phone number.

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

Updated profile image URL.

Link copied to clipboard
val ssn: String? = null

Updated full Social Security Number.

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

Updated last four digits of the Social Security Number.