# `Stripe.Resources.CountrySpec`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/country_spec.ex#L2)

CountrySpec

Stripe needs to collect certain pieces of information about each account
created. These requirements can differ depending on the account's country. The
Country Specs API makes these rules available to your integration.

You can also view the information from this API call as [an online
guide](https://docs.stripe.com/docs/connect/required-verification-information).

# `t`

```elixir
@type t() :: %Stripe.Resources.CountrySpec{
  default_currency: String.t(),
  id: String.t(),
  object: String.t(),
  supported_bank_account_currencies: %{required(String.t()) =&gt; [String.t()]},
  supported_payment_currencies: [String.t()],
  supported_payment_methods: [String.t()],
  supported_transfer_countries: [String.t()],
  verification_fields: Stripe.Resources.CountrySpec.VerificationFields.t()
}
```

* `default_currency` - The default currency for this country. This applies to both payment methods and bank accounts. Max length: 5000.
* `id` - Unique identifier for the object. Represented as the ISO country code for this country. Max length: 5000.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `country_spec`.
* `supported_bank_account_currencies` - Currencies that can be accepted in the specific country (for transfers).
* `supported_payment_currencies` - Currencies that can be accepted in the specified country (for payments).
* `supported_payment_methods` - Payment methods available in the specified country. You may need to enable some payment methods (e.g., [ACH](https://stripe.com/docs/ach)) on your account before they appear in this list. The `stripe` payment method refers to [charging through your platform](https://stripe.com/docs/connect/destination-charges).
* `supported_transfer_countries` - Countries that can accept transfers from the specified country.
* `verification_fields` - Expandable.

# `expandable_fields`

# `object_name`

---

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