pub struct IssuingCardAuthorizationControls {
pub allowed_categories: Option<Vec<MerchantCategory>>,
pub blocked_categories: Option<Vec<MerchantCategory>>,
pub spending_limits: Option<Vec<IssuingCardSpendingLimit>>,
pub spending_limits_currency: Option<Currency>,
}Fields§
§allowed_categories: Option<Vec<MerchantCategory>>Array of strings containing categories of authorizations to allow.
All other categories will be blocked.
Cannot be set with blocked_categories.
blocked_categories: Option<Vec<MerchantCategory>>Array of strings containing categories of authorizations to decline.
All other categories will be allowed.
Cannot be set with allowed_categories.
spending_limits: Option<Vec<IssuingCardSpendingLimit>>Limit spending with amount-based rules that apply across any cards this card replaced (i.e., its replacement_for card and that card’s replacement_for card, up the chain).
spending_limits_currency: Option<Currency>Currency of the amounts within spending_limits.
Always the same as the currency of the card.
Trait Implementations§
source§impl Clone for IssuingCardAuthorizationControls
impl Clone for IssuingCardAuthorizationControls
source§fn clone(&self) -> IssuingCardAuthorizationControls
fn clone(&self) -> IssuingCardAuthorizationControls
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for IssuingCardAuthorizationControls
impl Default for IssuingCardAuthorizationControls
source§fn default() -> IssuingCardAuthorizationControls
fn default() -> IssuingCardAuthorizationControls
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IssuingCardAuthorizationControls
impl<'de> Deserialize<'de> for IssuingCardAuthorizationControls
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more