Individual

data class Individual(var address: Address? = null, var addressKana: AddressJapanParams? = null, var addressKanji: AddressJapanParams? = null, var dateOfBirth: DateOfBirth? = null, var email: String? = null, var firstName: String? = null, var firstNameKana: String? = null, var firstNameKanji: String? = null, var gender: String? = null, var idNumber: String? = null, var lastName: String? = null, var lastNameKana: String? = null, var lastNameKanji: String? = null, var maidenName: String? = null, var metadata: Map<String, String>? = null, var phone: String? = null, var ssnLast4: String? = null, var verification: AccountParams.BusinessTypeParams.Individual.Verification? = null) : AccountParams.BusinessTypeParams

Information about the person represented by the account.

account.individual

Constructors

Link copied to clipboard
constructor(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map<String, String>? = null, phone: String? = null, ssnLast4: String? = null, verification: AccountParams.BusinessTypeParams.Individual.Verification? = null)

Types

Link copied to clipboard
class Builder
Link copied to clipboard
data class Document @JvmOverloads constructor(front: String? = null, back: String? = null) : StripeParamsModel, Parcelable
Link copied to clipboard

Properties

Link copied to clipboard

The individual’s primary address.

Link copied to clipboard

The Kana variation of the the individual’s primary address (Japan only).

Link copied to clipboard

The Kanji variation of the the individual’s primary address (Japan only).

Link copied to clipboard

The individual’s date of birth.

Link copied to clipboard

The individual’s email.

Link copied to clipboard

The individual’s first name.

Link copied to clipboard

The Kana variation of the the individual’s first name (Japan only).

Link copied to clipboard

The Kanji variation of the individual’s first name (Japan only).

Link copied to clipboard

The individual’s gender (International regulations require either “male” or “female”).

Link copied to clipboard

The government-issued ID number of the individual, as appropriate for the representative’s country. (Examples are a Social Security Number in the U.S., or a Social Insurance Number in Canada). Instead of the number itself, you can also provide a PII token.

Link copied to clipboard

The individual’s last name.

Link copied to clipboard

The Kana varation of the individual’s last name (Japan only).

Link copied to clipboard

The Kanji varation of the individual’s last name (Japan only).

Link copied to clipboard

The individual’s maiden name.

Link copied to clipboard

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.

Link copied to clipboard
open override val paramsList: List<Pair<String, Any?>>
Link copied to clipboard

The individual’s phone number.

Link copied to clipboard

The last four digits of the individual’s Social Security Number (U.S. only).

Link copied to clipboard

The individual’s verification document information.

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
open override fun toParamMap(): Map<String, Any>
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)