# `Stripe.Resources.V2.Core.Account.Defaults`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/v2/core/account.ex#L2509)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.V2.Core.Account.Defaults{
  currency: String.t() | nil,
  locales: [String.t()] | nil,
  profile: Stripe.Resources.V2.Core.Account.Defaults.Profile.t() | nil,
  responsibilities:
    Stripe.Resources.V2.Core.Account.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*
