Interface CallTranscriptFragment
public interface CallTranscriptFragment
A
CallTranscriptFragment
is a fragment of text
extracted from the audio stream of a Call
- Since:
- 13.4
-
Method Summary
Modifier and TypeMethodDescriptionThe method returns theCallParticipantType
of theCallTranscriptFragment
.The method returns the call participation id of theCallActivity
which thisCallTranscriptFragment
is assigned to.The method returns the locale with the language of theCallTranscriptFragment
.The method returns the start date of theCallTranscriptFragment
.getText()
The method returns the text ofCallTranscriptFragment
.
-
Method Details
-
getCallParticipationId
Long getCallParticipationId()The method returns the call participation id of theCallActivity
which thisCallTranscriptFragment
is assigned to. ACallTranscriptFragment
can be assigned to one of the following call activities: -CallActivityDequeued
(s:OptionalCallParticipationChange.getCallParticipationId()
). -CallActivityDisconnected
(s:OptionalCallParticipationChange.getCallParticipationId()
). -CallActivityEstablished
(s.OptionalCallParticipationChange.getCallParticipationId()
), -CallActivityRedirected
(s.OptionalCallParticipationChange.getCallParticipationId()
), -CallActivityReceived
(s:OptionalCallParticipationChange.getCallParticipationId()
).- Returns:
- the call participation id of the
CallActivity
which this fragment is assigned to - Since:
- 13.4
-
getCallParticipantType
CallParticipantType getCallParticipantType()The method returns theCallParticipantType
of theCallTranscriptFragment
.- Returns:
- the
CallParticipantType
of the fragment. - Since:
- 13.4
-
getStartDate
Date getStartDate()The method returns the start date of theCallTranscriptFragment
.- Returns:
- the start date of the
CallTranscriptFragment
- Since:
- 13.4
-
getLocale
Locale getLocale()The method returns the locale with the language of theCallTranscriptFragment
.- Returns:
- the locale of the
CallTranscriptFragment
- Since:
- 13.4
-
getText
String getText()The method returns the text ofCallTranscriptFragment
.- Returns:
- the text of the
CallTranscriptFragment
- Since:
- 13.4
-