Person constructor

const Person({
  1. String? account,
  2. PersonAdditionalTosAcceptances? additionalTosAcceptances,
  3. Address? address,
  4. LegalEntityJapanAddress? addressKana,
  5. LegalEntityJapanAddress? addressKanji,
  6. required DateTime created,
  7. LegalEntityDob? dob,
  8. String? email,
  9. String? firstName,
  10. String? firstNameKana,
  11. String? firstNameKanji,
  12. List<String>? fullNameAliases,
  13. PersonFutureRequirements? futureRequirements,
  14. String? gender,
  15. required String id,
  16. bool? idNumberProvided,
  17. bool? idNumberSecondaryProvided,
  18. String? lastName,
  19. String? lastNameKana,
  20. String? lastNameKanji,
  21. String? maidenName,
  22. Map<String, String>? metadata,
  23. String? nationality,
  24. String? phone,
  25. PersonPoliticalExposure? politicalExposure,
  26. Address? registeredAddress,
  27. PersonRelationship? relationship,
  28. PersonFutureRequirements? requirements,
  29. bool? ssnLast4Provided,
  30. 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,
});