NXMMemberMessageStatusEvent

Objective-C

@interface NXMMemberMessageStatusEvent : NXMEvent

Swift

class NXMMemberMessageStatusEvent : NXMEvent

Represents a member message status event that can be received on an NXMConversation.

  • The event id of the original message.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger originalEventId;

    Swift

    var originalEventId: Int { get }
  • The channel type of the sender.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *channelType;

    Swift

    var channelType: String { get }
  • The id/number of the sender.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *from;

    Swift

    var from: String { get }
  • to

    The id/number of the recepient.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *to;

    Swift

    var to: String { get }
  • The message uuid of the sent message.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *messageUuid;

    Swift

    var messageUuid: String? { get }
  • The error in case the message was not delivered properly.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSDictionary *error;

    Swift

    var error: [AnyHashable : Any]? { get }
  • The content of the message.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSDictionary *content;

    Swift

    var content: [AnyHashable : Any] { get }