# `Stripe.Params.V2.Core.AccountCreateParams.Defaults`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/v2/core/account_create_params.ex#L1168)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.V2.Core.AccountCreateParams.Defaults{
  currency: String.t() | nil,
  locales: [String.t()] | nil,
  profile: Stripe.Params.V2.Core.AccountCreateParams.Defaults.Profile.t() | nil,
  responsibilities:
    Stripe.Params.V2.Core.AccountCreateParams.Defaults.Responsibilities.t()
    | nil
}
```

* `currency` - Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
* `locales` - The Account's preferred locales (languages), ordered by preference.
* `profile` - Account profile information.
* `responsibilities` - Default responsibilities held by either Stripe or the platform.

---

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