AuthRulesModel

@Serializable
data class AuthRulesModel(val allowedMerchants: AllowedMerchantsModel?, val limits: List<CardLimitModel>? = emptyList())

Authorization Rules.

Constructors

Link copied to clipboard
constructor(allowedMerchants: AllowedMerchantsModel?, limits: List<CardLimitModel>? = emptyList())

Properties

Link copied to clipboard
@SerialName(value = "allowed_merchants")
val allowedMerchants: AllowedMerchantsModel?

Card transactions from one or more merchants

Link copied to clipboard
@SerialName(value = "limits")
val limits: List<CardLimitModel>?

Limit to facilitate the management and monitoring of card spending limits for specific categories and time frames.