# `Stripe.Resources.PaymentMethod.NzBankAccount`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/payment_method.ex#L1018)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.PaymentMethod.NzBankAccount{
  account_holder_name: String.t() | nil,
  bank_code: String.t() | nil,
  bank_name: String.t() | nil,
  branch_code: String.t() | nil,
  last4: String.t() | nil,
  suffix: String.t() | nil
}
```

* `account_holder_name` - The name on the bank account. Only present if the account holder name is different from the name of the authorized signatory collected in the PaymentMethod’s billing details. Max length: 5000. Nullable.
* `bank_code` - The numeric code for the bank account's bank. Max length: 5000.
* `bank_name` - The name of the bank. Max length: 5000.
* `branch_code` - The numeric code for the bank account's bank branch. Max length: 5000.
* `last4` - Last four digits of the bank account number. Max length: 5000.
* `suffix` - The suffix of the bank account number. Max length: 5000. Nullable.

---

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