AccountIndividual class final

individual_specs

Information about the person represented by the account. This field is null unless `business_type` is set to `individual`. Once you create an [Account Link](https://stripe.com/docs/api/account\_links) or [Account Session](https://stripe.com/docs/api/account_sessions), this property can only be updated for Custom accounts.

Constructors

AccountIndividual({AccountSupportAddress? address, AccountAddressKana? addressKana, AccountAddressKana? addressKanji, AccountDob? dob, String? email, String? firstName, String? firstNameKana, String? firstNameKanji, List<String>? fullNameAliases, String? gender, String? idNumber, String? idNumberSecondary, String? lastName, String? lastNameKana, String? lastNameKanji, String? maidenName, Map<String, String>? metadata, String? phone, PersonPoliticalExposure? politicalExposure, AccountSupportAddress? registeredAddress, AccountRelationship? relationship, String? ssnLast4, AccountIndividualVerification? verification})
individual_specs
const
AccountIndividual.fromJson(Object? json)
factory

Properties

address AccountSupportAddress?
final
addressKana AccountAddressKana?
final
addressKanji AccountAddressKana?
final
dob AccountDob?
date_of_birth_specs
final
email String?
final
firstName String?
final
firstNameKana String?
final
firstNameKanji String?
final
fullNameAliases List<String>?
final
gender String?
final
hashCode int
The hash code for this object.
no setterinherited
idNumber String?
final
idNumberSecondary String?
final
lastName String?
final
lastNameKana String?
final
lastNameKanji String?
final
maidenName String?
final
metadata Map<String, String>?
final
phone String?
final
politicalExposure PersonPoliticalExposure?
final
registeredAddress AccountSupportAddress?
final
relationship AccountRelationship?
individual_relationship_specs
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
ssnLast4 String?
final
verification AccountIndividualVerification?
person_verification_specs
final

Methods

encodeWith<V>(Encoder<V> encoder) → V
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

encode<V>(AccountIndividual instance, Encoder<V> encoder) → V