ActivityCategory
public enum ActivityCategory : String
extension ActivityCategory: Codable
Categorization for a credit card transaction
-
A Purchase, inclduing a refund
Declaration
Swift
case purchase = "purchase"
-
A Payment towards the balance
Declaration
Swift
case payment = "payment"
-
A pre authorization for a purchase
Declaration
Swift
case tokenAuthRequest = "token auth request"
-
An authorization for an mail or phone order
Declaration
Swift
case mailOrPhoneOrder = "mail or phone order"
-
Fee for going over the credit limit
Declaration
Swift
case overlimitFee = "overlimit fee"
-
Declaration
Swift
public init(from decoder: Decoder) throws