AccountIndividual constructor

const AccountIndividual({
  1. AccountSupportAddress? address,
  2. AccountAddressKana? addressKana,
  3. AccountAddressKana? addressKanji,
  4. AccountDob? dob,
  5. String? email,
  6. String? firstName,
  7. String? firstNameKana,
  8. String? firstNameKanji,
  9. List<String>? fullNameAliases,
  10. String? gender,
  11. String? idNumber,
  12. String? idNumberSecondary,
  13. String? lastName,
  14. String? lastNameKana,
  15. String? lastNameKanji,
  16. String? maidenName,
  17. Map<String, String>? metadata,
  18. String? phone,
  19. PersonPoliticalExposure? politicalExposure,
  20. AccountSupportAddress? registeredAddress,
  21. AccountRelationship? relationship,
  22. String? ssnLast4,
  23. AccountIndividualVerification? verification,
})

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.

Implementation

const AccountIndividual({
  this.address,
  this.addressKana,
  this.addressKanji,
  this.dob,
  this.email,
  this.firstName,
  this.firstNameKana,
  this.firstNameKanji,
  this.fullNameAliases,
  this.gender,
  this.idNumber,
  this.idNumberSecondary,
  this.lastName,
  this.lastNameKana,
  this.lastNameKanji,
  this.maidenName,
  this.metadata,
  this.phone,
  this.politicalExposure,
  this.registeredAddress,
  this.relationship,
  this.ssnLast4,
  this.verification,
});