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

:custom_mandate_url :: :string

A URL for custom mandate text

:interval_description :: :string

Description of the interval. Only required if the 'payment_schedule' parameter is 'interval' or 'combined'.

:payment_schedule :: :string

Payment schedule for the mandate.

:transaction_type :: :string

Transaction type of the mandate.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() ::
  %ExOAPI.Stripe.Schemas.PaymentIntentPaymentMethodOptionsMandateOptionsAcssDebit{
    custom_mandate_url: String.t() | nil,
    interval_description: String.t() | nil,
    payment_schedule: (:sporadic | :interval | :combined) | nil,
    transaction_type: (:personal | :business) | nil
  }

Link to this section Functions

Link to this function

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

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