SCSUserTextEvent
@interface SCSUserTextEvent : SCSChatEvent <SCSChatSendableEvent>
Information about a user text event.
-
The text of the original user message.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *originalText;
Swift
var originalText: String! { get }
-
The text of the outgoing user message.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *text;
Swift
var text: String! { get }
-
Details describing if and how the outgoing message was modified.
Declaration
Objective-C
@property (nonatomic, readonly) SCUserEventInfoType infoType;
Swift
var infoType: SCUserEventInfoType { get }
-
Indicates whether the text event has completed.
Declaration
Objective-C
@property (nonatomic, readonly, getter=isCompleted) BOOL completed;
Swift
var isCompleted: Bool { get }
-
The current delivery status of the event.
Declaration
Objective-C
@property (nonatomic, readonly) SCSUserEventDeliveryStatus deliveryStatus;
Swift
var deliveryStatus: SCSUserEventDeliveryStatus { get }