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

:count :: :integer

For fixed_count installment plans, this is the number of installment payments your customer will make to their credit card.

:interval :: :string

For fixed_count installment plans, this is the interval between installment payments your customer will make to their credit card. One of month.

:type :: :string

Type of installment plan, one of fixed_count.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentMethodDetailsCardInstallmentsPlan{
  count: integer() | nil,
  interval: :month | nil,
  type: :fixed_count | nil
}

Link to this section Functions

Link to this function

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

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