EMRegistrationResponse
@interface EMRegistrationResponse : NSObject
OOB registration response from EMOobRegistrationManager:
- registerWithRequest:error:
- registerWithRequest:completionHandler:
Since
5.3-
Get the message pending status.
Declaration
Objective-C
@property (readonly, nonatomic) BOOL isMessagePending;
Swift
var isMessagePending: Bool { get }
Return Value
YES
if the message is pending. OtherwiseNO
. -
Gets the client ID resulting from the registration process. This is meaningful only if the registration operation has succeeded.
Declaration
Objective-C
@property (readonly, copy, nonatomic) NSString *_Nonnull clientId;
Swift
var clientId: String { get }
Return Value
The client ID.