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

description: Each customer has a balance that is automatically applied to future invoices and payments using the customer_balance payment method. Customers can fund this balance by initiating a bank transfer to any account in the financial_addresses field. Related guide: Customer Balance - Funding Instructions to learn more

:bank_transfer :: ExOAPI.Stripe.Schemas.FundingInstructionsBankTransfer

:currency :: :string

Three-letter ISO currency code, in lowercase. Must be a supported currency.

:funding_type :: :string

The funding_type of the returned instructions

:livemode :: :boolean

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

:object :: :string

String representing the object's type. Objects of the same type share the same value.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.FundingInstructions{
  bank_transfer:
    ExOAPI.Stripe.Schemas.FundingInstructionsBankTransfer.t() | nil,
  currency: String.t() | nil,
  funding_type: :bank_transfer | nil,
  livemode: boolean() | nil,
  object: :funding_instructions | nil
}

Link to this section Functions

Link to this function

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

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