View Source ExOAPI.Stripe.Schemas.AccountPaymentsSettings (exoapi_stripe v0.1.4)

:statement_descriptor :: :string

The default text that appears on credit card statements when a charge is made. This field prefixes any dynamic statement_descriptor specified on the charge.

:statement_descriptor_kana :: :string

The Kana variation of the default text that appears on credit card statements when a charge is made (Japan only)

:statement_descriptor_kanji :: :string

The Kanji variation of the default text that appears on credit card statements when a charge is made (Japan only)

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.AccountPaymentsSettings{
  statement_descriptor: String.t() | nil,
  statement_descriptor_kana: String.t() | nil,
  statement_descriptor_kanji: String.t() | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()