Person constructor
const
Person({
- String? account,
- PersonAdditionalTosAcceptances? additionalTosAcceptances,
- Address? address,
- LegalEntityJapanAddress? addressKana,
- LegalEntityJapanAddress? addressKanji,
- required DateTime created,
- LegalEntityDob? dob,
- String? email,
- String? firstName,
- String? firstNameKana,
- String? firstNameKanji,
- List<
String> ? fullNameAliases, - PersonFutureRequirements? futureRequirements,
- String? gender,
- required String id,
- bool? idNumberProvided,
- bool? idNumberSecondaryProvided,
- String? lastName,
- String? lastNameKana,
- String? lastNameKanji,
- String? maidenName,
- Map<
String, String> ? metadata, - String? nationality,
- String? phone,
- PersonPoliticalExposure? politicalExposure,
- Address? registeredAddress,
- PersonRelationship? relationship,
- PersonFutureRequirements? requirements,
- bool? ssnLast4Provided,
- LegalEntityPersonVerification? verification,
Person
This is an object representing a person associated with a Stripe account. A platform cannot access a Standard or Express account's persons after the account starts onboarding, such as after generating an account link for the account. See the [Standard onboarding](https://stripe.com/docs/connect/standard-accounts) or [Express onboarding documentation](https://stripe.com/docs/connect/express-accounts) for information about platform prefilling and account onboarding steps. Related guide: [Handling identity verification with the API](https://stripe.com/docs/connect/handling-api-verification#person-information)
Implementation
const Person({
this.account,
this.additionalTosAcceptances,
this.address,
this.addressKana,
this.addressKanji,
required this.created,
this.dob,
this.email,
this.firstName,
this.firstNameKana,
this.firstNameKanji,
this.fullNameAliases,
this.futureRequirements,
this.gender,
required this.id,
this.idNumberProvided,
this.idNumberSecondaryProvided,
this.lastName,
this.lastNameKana,
this.lastNameKanji,
this.maidenName,
this.metadata,
this.nationality,
this.phone,
this.politicalExposure,
this.registeredAddress,
this.relationship,
this.requirements,
this.ssnLast4Provided,
this.verification,
});