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

Parameters for account token create.

# `t`

```elixir
@type t() :: %Stripe.Params.V2.Core.AccountTokenCreateParams{
  contact_email: String.t() | nil,
  contact_phone: String.t() | nil,
  display_name: String.t() | nil,
  identity: Stripe.Params.V2.Core.AccountTokenCreateParams.Identity.t() | nil
}
```

* `contact_email` - The default contact email address for the Account. Required when configuring the account as a merchant or recipient.
* `contact_phone` - The default contact phone for the Account.
* `display_name` - A descriptive name for the Account. This name will be surfaced in the Stripe Dashboard and on any invoices sent to the Account.
* `identity` - Information about the company, individual, and business represented by the Account.

---

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