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()
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
}
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()
View Source
billing() :: %{address: Stripe.Types.address(), name: String.t()}
billing() :: %{address: Stripe.Types.address(), name: String.t()}
Link to this type
merchant_data() View Source
Link to this type
spending_limits()
View Source
spending_limits()
View Source
spending_limits() :: %{
amount: non_neg_integer(),
categories: list(),
interval: String.t()
}
spending_limits() :: %{ amount: non_neg_integer(), categories: list(), interval: String.t() }