stripity_stripe v2.7.0 Stripe.Issuing.Types View Source

A module that contains shared issuing types matching Stripe schemas.

Link to this section Summary

Link to this section Types

Link to this type

authorization_controls() View Source
authorization_controls() :: %{
  allowed_categories: list() | nil,
  blocked_categories: list() | nil,
  spending_limits: [spending_limits()] | nil,
  currency: String.t() | nil,
  max_amount: non_neg_integer() | nil,
  max_approvals: non_neg_integer() | nil
}

Link to this type

billing() View Source
billing() :: %{address: Stripe.Types.address(), name: String.t()}

Link to this type

merchant_data() View Source
merchant_data() :: %{
  category: String.t(),
  city: String.t(),
  country: String.t(),
  name: String.t(),
  network_id: String.t(),
  postal_code: String.t(),
  state: String.t()
}

Link to this type

spending_limits() View Source
spending_limits() :: %{
  amount: non_neg_integer(),
  categories: list(),
  interval: String.t()
}