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

:amount_remaining :: :integer

The remaining amount that needs to be transferred to complete the payment.

:currency :: :string

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

::financial_addresses :: ExOAPI.Stripe.Schemas.FundingInstructionsBankTransferFinancialAddress

:reference :: :string

A string identifying this payment. Instruct your customer to include this code in the reference or memo field of their bank transfer.

:type :: :string

Type of bank transfer

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() ::
  %ExOAPI.Stripe.Schemas.PaymentIntentNextActionDisplayBankTransferInstructions{
    amount_remaining: integer() | nil,
    currency: String.t() | nil,
    financial_addresses: [
      ExOAPI.Stripe.Schemas.FundingInstructionsBankTransferFinancialAddress.t()
    ],
    reference: String.t() | nil,
    type: :jp_bank_transfer | nil
  }

Link to this section Functions

Link to this function

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

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