MppCheckResponseData
Objective-C
@interface MppCheckResponseData : NSObject
Swift
class MppCheckResponseData : NSObject
Check response data used for Click To Pay push provisioning.
-
Array of of tokens IDs.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSArray<NSString *> *tokens;
Swift
var tokens: [String] { get }
-
Returns last four digits of payment card number.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *lastFourDigits;
Swift
var lastFourDigits: String { get }
Return Value
Last four digits of payment card number.
-
Returns card payment network.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSString *paymentNetwork;
Swift
var paymentNetwork: String { get }
Return Value
Card payment network.
-
Create check response data with dictionary.
Declaration
Objective-C
+ (nonnull instancetype)responseDataWithDictionary: (NSDictionary *_Nonnull)dictionary;
Swift
convenience init(dictionary: [AnyHashable : Any])
Parameters
dictionary
Dictionary containing records to create instance of
MppCheckResponseData
.Return Value
MppCheckResponseData object instance.
-
Verify if check response data is valid.
Declaration
Objective-C
- (BOOL)isValid;
Swift
func isValid() -> Bool
Return Value
Bool value if check response response data is valid.