Individual

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

Information about the person represented by the account.

account.individual

Constructors

Link copied to clipboard
fun Individual(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
Link copied to clipboard
data class Document @JvmOverloads constructor(front: String?, back: String?) : StripeParamsModel, Parcelable
Link copied to clipboard

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)

Properties

Link copied to clipboard
var address: Address? = null

The individual’s primary address.

Link copied to clipboard
var addressKana: AddressJapanParams? = null

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

Link copied to clipboard
var addressKanji: AddressJapanParams? = null

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

Link copied to clipboard
var dateOfBirth: DateOfBirth? = null

The individual’s date of birth.

Link copied to clipboard
var email: String? = null

The individual’s email.

Link copied to clipboard
var firstName: String? = null

The individual’s first name.

Link copied to clipboard
var firstNameKana: String? = null

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

Link copied to clipboard
var firstNameKanji: String? = null

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

Link copied to clipboard
var gender: String? = null

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

Link copied to clipboard
var idNumber: String? = null

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
var lastName: String? = null

The individual’s last name.

Link copied to clipboard
var lastNameKana: String? = null

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

Link copied to clipboard
var lastNameKanji: String? = null

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

Link copied to clipboard
var maidenName: String? = null

The individual’s maiden name.

Link copied to clipboard
var metadata: Map<String, String>? = null

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
var phone: String? = null

The individual’s phone number.

Link copied to clipboard
var ssnLast4: String? = null

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

Link copied to clipboard

The individual’s verification document information.