View Source ExOAPI.Stripe.Schemas.PaymentMethodSepaDebit (exoapi_stripe v0.1.3)

:bank_code :: :string

Bank code of bank associated with the bank account.

:branch_code :: :string

Branch code of bank associated with the bank account.

:country :: :string

Two-letter ISO code representing the country the bank account is located in.

:fingerprint :: :string

Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.

:generated_from :: ExOAPI.Stripe.Schemas.SepaDebitGeneratedFrom

Information about the object that generated this PaymentMethod.

:last4 :: :string

Last four characters of the IBAN.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentMethodSepaDebit{
  bank_code: String.t() | nil,
  branch_code: String.t() | nil,
  country: String.t() | nil,
  fingerprint: String.t() | nil,
  generated_from: ExOAPI.EctoTypes.AnyOf.t() | nil,
  last4: 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()