View Source Stripe.FundingInstructions (stripity_stripe v3.1.1)

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

Link to this section Summary

Types

t()

The funding_instructions type.

Link to this section Types

@type t() :: %Stripe.FundingInstructions{
  bank_transfer: term(),
  currency: binary(),
  funding_type: binary(),
  livemode: boolean(),
  object: binary()
}

The funding_instructions type.

  • bank_transfer
  • currency Three-letter ISO currency code, in lowercase. Must be a supported currency.
  • funding_type The funding_type of the returned instructions
  • livemode Has the value true if the object exists in live mode or the value false if the object exists in test mode.
  • object String representing the object's type. Objects of the same type share the same value.