MppAvailablePushMethod
Objective-C
@interface MppAvailablePushMethod : NSObject
Swift
class MppAvailablePushMethod : NSObject
Class describing available push methods.
-
The push method type of the URI. Issuer must respect specific rules when selecting the URI where they will send the consumer. Because mobile apps provide a better mobile experience than the web browsers, Issuers should always try and direct the consumer to iOS app of the Token Requestor, when possible.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *type;
Swift
var type: String? { get }
Return Value
The push method type.
-
The URI to open the token requestor’s application or website.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *uri;
Swift
var uri: String? { get }
Return Value
The URI to open the token requestor’s application or website.
-
Constructs push method from values passed in dictionary.
Declaration
Objective-C
+ (nonnull instancetype)availablePushMethodWithDictionary: (NSDictionary *_Nonnull)dictionary;
Swift
convenience init(dictionary: [AnyHashable : Any])
Return Value
Available push method.