# `Stripe.Params.AccountUpdateParams.Settings.Payments`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/account_update_params.ex#L1884)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.AccountUpdateParams.Settings.Payments{
  statement_descriptor: String.t() | nil,
  statement_descriptor_kana: String.t() | nil,
  statement_descriptor_kanji: String.t() | nil
}
```

* `statement_descriptor` - The default text that appears on statements for non-card charges outside of Japan. For card charges, if you don't set a `statement_descriptor_prefix`, this text is also used as the statement descriptor prefix. In that case, if concatenating the statement descriptor suffix causes the combined statement descriptor to exceed 22 characters, we truncate the `statement_descriptor` text to limit the full descriptor to 22 characters. For more information about statement descriptors and their requirements, see the [account settings documentation](https://docs.stripe.com/get-started/account/statement-descriptors). Max length: 22.
* `statement_descriptor_kana` - The Kana variation of `statement_descriptor` used for charges in Japan. Japanese statement descriptors have [special requirements](https://docs.stripe.com/get-started/account/statement-descriptors#set-japanese-statement-descriptors). Max length: 22.
* `statement_descriptor_kanji` - The Kanji variation of `statement_descriptor` used for charges in Japan. Japanese statement descriptors have [special requirements](https://docs.stripe.com/get-started/account/statement-descriptors#set-japanese-statement-descriptors). Max length: 22.

---

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