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

:bank_name :: :string

Name of the bank associated with the bank account.

:fingerprint :: :string

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

:institution_number :: :string

Institution number of the bank account

:last4 :: :string

Last four digits of the bank account number.

:mandate :: ExOAPI.Stripe.Schemas.Mandate

ID of the mandate used to make this payment.

:transit_number :: :string

Transit number of the bank account.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentMethodDetailsAcssDebit{
  bank_name: String.t() | nil,
  fingerprint: String.t() | nil,
  institution_number: String.t() | nil,
  last4: String.t() | nil,
  mandate: String.t() | nil,
  transit_number: 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()