EMIncomingMessage
Objective-C
@interface EMIncomingMessage : NSObject <EMMessage>
Swift
class EMIncomingMessage : NSObject, EMMessage
Interface of an incoming message from the OOB server.
Since
5.3-
Gets the underlying incoming message type.
Declaration
Objective-C
@property (nonatomic, readonly) EMIncomingMessageType messageType;Swift
var messageType: EMIncomingMessageType { get }Return Value
The incoming message type.
-
The server acknowledgment state of the message.
Declaration
Objective-C
@property (nonatomic, readonly) BOOL isAcknowledgmentRequested;Swift
var isAcknowledgmentRequested: Bool { get }Return Value
YESif the server has requested an acknowledgment,NOotherwise. -
Gets the message expiration date.
Declaration
Objective-C
@property (nonatomic, readonly) NSTimeInterval expirationDate;Swift
var expirationDate: TimeInterval { get }Return Value
The expiration date in NSTimeInterval.
EMIncomingMessage Class Reference