NXMTextEvent

Objective-C

@interface NXMTextEvent : NXMEvent

Swift

class NXMTextEvent : NXMEvent

Represents a text event that is sent and received on an NXMConversation.

  • The text of the event.

    Declaration

    Objective-C

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

    Swift

    var text: String? { get }
  • The state of the event.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSDictionary<NSNumber *, NSDictionary<NSString *, NSDate *> *> *state;

    Swift

    var state: [NSNumber : [String : Date]] { get }