# `Stripe.Params.V2.Core.AccountUpdateParams.Identity`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/v2/core/account_update_params.ex#L1234)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.V2.Core.AccountUpdateParams.Identity{
  attestations:
    Stripe.Params.V2.Core.AccountUpdateParams.Identity.Attestations.t() | nil,
  business_details:
    Stripe.Params.V2.Core.AccountUpdateParams.Identity.BusinessDetails.t() | nil,
  country: String.t() | nil,
  entity_type: String.t() | nil,
  individual:
    Stripe.Params.V2.Core.AccountUpdateParams.Identity.Individual.t() | nil
}
```

* `attestations` - Attestations from the identity's key people, e.g. owners, executives, directors, representatives.
* `business_details` - Information about the company or business.
* `country` - The country in which the account holder resides, or in which the business is legally established. This should be an [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code.
* `entity_type` - The entity type. Possible values: `company`, `government_entity`, `individual`, `non_profit`.
* `individual` - Information about the individual represented by the Account. This property is `null` unless `entity_type` is set to `individual`.

---

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