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

:network_status :: :string

The status of the mandate on the Bacs network. Can be one of pending, revoked, refused, or accepted.

:reference :: :string

The unique reference identifying the mandate on the Bacs network.

:url :: :string

The URL that will contain the mandate that the customer has signed.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.MandateBacsDebit{
  network_status: (:revoked | :refused | :pending | :accepted) | nil,
  reference: String.t() | nil,
  url: 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()