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

:account_holder_type :: :string

Type of entity that holds the account. This can be either individual or company.

:bank_name :: :string

Name of the 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.

:last4 :: :string

Last four digits of the bank account number.

:routing_number :: :string

Routing transit number of the bank account.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentMethodDetailsAchDebit{
  account_holder_type: (:individual | :company) | nil,
  bank_name: String.t() | nil,
  country: String.t() | nil,
  fingerprint: String.t() | nil,
  last4: String.t() | nil,
  routing_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()