# `Stripe.Params.V2.Core.Accounts.PersonUpdateParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/v2/core/accounts/person_update_params.ex#L2)

Parameters for person update.

# `t`

```elixir
@type t() :: %Stripe.Params.V2.Core.Accounts.PersonUpdateParams{
  additional_addresses: term(),
  additional_names: term(),
  additional_terms_of_service: term(),
  address: term(),
  date_of_birth: term(),
  documents: term(),
  email: term(),
  given_name: term(),
  id_numbers: term(),
  legal_gender: term(),
  metadata: term(),
  nationalities: term(),
  person_token: term(),
  phone: term(),
  political_exposure: term(),
  relationship: term(),
  script_addresses: term(),
  script_names: term(),
  surname: term()
}
```

* `additional_addresses` - Additional addresses associated with the person.
* `additional_names` - Additional names (e.g. aliases) associated with the person.
* `additional_terms_of_service` - Attestations of accepted terms of service agreements.
* `address` - The primary address associated with the person.
* `date_of_birth` - The person's date of birth.
* `documents` - Documents that may be submitted to satisfy various informational requests.
* `email` - Email.
* `given_name` - The person's first name.
* `id_numbers` - The identification numbers (e.g., SSN) associated with the person.
* `legal_gender` - The person's gender (International regulations require either "male" or "female"). Possible values: `female`, `male`.
* `metadata` - 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.
* `nationalities` - The nationalities (countries) this person is associated with.
* `person_token` - The person token generated by the person token api.
* `phone` - The phone number for this person.
* `political_exposure` - The person's political exposure. Possible values: `existing`, `none`.
* `relationship` - The relationship that this person has with the Account's business or legal entity.
* `script_addresses` - The script addresses (e.g., non-Latin characters) associated with the person.
* `script_names` - The script names (e.g. non-Latin characters) associated with the person.
* `surname` - The person's last name.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
