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

:fingerprint :: :string

Bank account fingerprint associated with the Stripe owned bank account receiving the transfer.

:funding_method :: :string

The credit transfer rails the sender used to push this transfer. The possible rails are: Faster Payments, BACS, CHAPS, and wire transfers. Currently only Faster Payments is supported.

:last4 :: :string

Last 4 digits of sender account number associated with the transfer.

:reference :: :string

Sender entered arbitrary information about the transfer.

:sender_account_number :: :string

Sender account number associated with the transfer.

:sender_name :: :string

Sender name associated with the transfer.

:sender_sort_code :: :string

Sender sort code associated with the transfer.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.SourceTransactionGbpCreditTransferData{
  fingerprint: String.t() | nil,
  funding_method: String.t() | nil,
  last4: String.t() | nil,
  reference: String.t() | nil,
  sender_account_number: String.t() | nil,
  sender_name: String.t() | nil,
  sender_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()