MonetaryToken

@interface MonetaryToken : NSObject

MonetaryToken class representing tokenized account data.

  • Token of user-entered account data.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *Token;

    Swift

    var Token: String! { get set }
  • Card brand of account represented by token.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *Brand;

    Swift

    var Brand: String! { get set }
  • Expiration month of account represented by token.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *ExpirationMonth;

    Swift

    var ExpirationMonth: String! { get set }
  • Expiration year of account represented by token.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *ExpirationYear;

    Swift

    var ExpirationYear: String! { get set }
  • Last four digits of account represented by token.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *Last4;

    Swift

    var Last4: String! { get set }