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

::allowed_categories :: :string

::blocked_categories :: :string

::spending_limits :: ExOAPI.Stripe.Schemas.IssuingCardSpendingLimit

:spending_limits_currency :: :string

Currency of the amounts within spending_limits. Always the same as the currency of the card.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingCardAuthorizationControls{
  allowed_categories: [String.t()] | nil,
  blocked_categories: [String.t()] | nil,
  spending_limits: [ExOAPI.Stripe.Schemas.IssuingCardSpendingLimit.t()],
  spending_limits_currency: 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()