AuthRules
public struct AuthRules : Codable
Rules that the card should use when authorizing a transaction.
-
Limit the use of this card to transactions from one or more merchants. If a transaction comes through that is not a part of these merchants, the transaction will be declined.
Declaration
Swift
public var allowedMerchants: AllowedMerchants?
-
Limit to facilitate the management and monitoring of card spending limits for specific categories and time frames.
Declaration
Swift
public var limits: [CardLimit]?
-
Auxiliary constructor
Declaration
Swift
public init(allowedMerchants: AllowedMerchants? = nil, limits: [CardLimit]? = nil)
Parameters
allowedMerchants
Limit the use of this card to transactions from one or more merchants.
limits
Limit to facilitate the management and monitoring of card spending limits for specific categories and time frames.