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

:fingerprint :: :string

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

:last4 :: :string

Last four digits of the bank account number.

:sort_code :: :string

Sort code of the bank account. (e.g., 10-20-30)

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentMethodBacsDebit{
  fingerprint: String.t() | nil,
  last4: String.t() | nil,
  sort_code: 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()