EMIncomingMessage

@interface 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 (readonly, nonatomic) EMIncomingMessageType messageType;

    Swift

    var messageType: EMIncomingMessageType { get }

    Return Value

    The incoming message type.

  • The server acknowledgment state of the message.

    Declaration

    Objective-C

    @property (readonly, nonatomic) BOOL isAcknowledgmentRequested;

    Swift

    var isAcknowledgmentRequested: Bool { get }

    Return Value

    YES if the server has requested an acknowledgment, NO otherwise.

  • Gets the message expiration date.

    Declaration

    Objective-C

    @property (readonly, nonatomic) NSTimeInterval expirationDate;

    Swift

    var expirationDate: TimeInterval { get }

    Return Value

    The expiration date in NSTimeInterval.