AWSConnectRealTimeContactAnalysisSegmentTranscript
Objective-C
@interface AWSConnectRealTimeContactAnalysisSegmentTranscript
Swift
class AWSConnectRealTimeContactAnalysisSegmentTranscript
The analyzed transcript segment.
Required parameters: [Id, ParticipantId, ParticipantRole, Content, Time]
-
The content of the transcript. Can be redacted.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable content;
Swift
var content: String? { get set }
-
The type of content of the item. For example,
text/plain
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable contentType;
Swift
var contentType: String? { get set }
-
The display name of the participant.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable displayName;
Swift
var displayName: String? { get set }
-
The identifier of the transcript.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable identifier;
Swift
var identifier: String? { get set }
-
The identifier of the participant.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable participantId;
Swift
var participantId: String? { get set }
-
The role of the participant. For example, is it a customer, agent, or system.
Declaration
Objective-C
@property (nonatomic) AWSConnectParticipantRole participantRole;
Swift
var participantRole: AWSConnectParticipantRole { get set }
-
Object describing redaction that was applied to the transcript. If transcript has the field it means part of the transcript was redacted.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectRealTimeContactAnalysisTranscriptItemRedaction *_Nullable redaction;
Swift
var redaction: AWSConnectRealTimeContactAnalysisTranscriptItemRedaction? { get set }
-
The sentiment detected for this piece of transcript.
Declaration
Objective-C
@property (nonatomic) AWSConnectRealTimeContactAnalysisSentimentLabel sentiment;
Swift
var sentiment: AWSConnectRealTimeContactAnalysisSentimentLabel { get set }
-
Field describing the time of the event. It can have different representations of time.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectRealTimeContactAnalysisTimeData *_Nullable time;
Swift
var time: AWSConnectRealTimeContactAnalysisTimeData? { get set }