AWSConnectParticipantGetTranscriptRequest

Objective-C

@interface AWSConnectParticipantGetTranscriptRequest

Swift

class AWSConnectParticipantGetTranscriptRequest
  • The authentication token associated with the participant’s connection.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable connectionToken;

    Swift

    var connectionToken: String? { get set }
  • The contactId from the current contact chain for which transcript is needed.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable contactId;

    Swift

    var contactId: String? { get set }
  • The maximum number of results to return in the page. Default: 10.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • The pagination token. Use the value returned previously in the next subsequent request to retrieve the next set of results.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }
  • The direction from StartPosition from which to retrieve message. Default: BACKWARD when no StartPosition is provided, FORWARD with StartPosition.

    Declaration

    Objective-C

    @property (nonatomic) AWSConnectParticipantScanDirection scanDirection;

    Swift

    var scanDirection: AWSConnectParticipantScanDirection { get set }
  • The sort order for the records. Default: DESCENDING.

    Declaration

    Objective-C

    @property (nonatomic) AWSConnectParticipantSortKey sortOrder;

    Swift

    var sortOrder: AWSConnectParticipantSortKey { get set }
  • A filtering option for where to start.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectParticipantStartPosition *_Nullable startPosition;

    Swift

    var startPosition: AWSConnectParticipantStartPosition? { get set }