# `Stripe.Resources.BankTransfer.FinancialAddresses.Iban`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/bank_transfer.ex#L50)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.BankTransfer.FinancialAddresses.Iban{
  account_holder_address: Stripe.Resources.Address.t() | nil,
  account_holder_name: String.t() | nil,
  bank_address: Stripe.Resources.Address.t() | nil,
  bic: String.t() | nil,
  country: String.t() | nil,
  iban: String.t() | nil
}
```

* `account_holder_address`
* `account_holder_name` - The name of the person or business that owns the bank account Max length: 5000.
* `bank_address`
* `bic` - The BIC/SWIFT code of the account. Max length: 5000.
* `country` - Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). Max length: 5000.
* `iban` - The IBAN of the account. Max length: 5000.

---

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