Class ConferenceParticipant
- java.lang.Object
-
- com.sinch.sdk.domains.voice.models.response.ConferenceParticipant
-
public class ConferenceParticipant extends Object
Information about a conference's participant
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConferenceParticipant.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConferenceParticipant.Builderbuilder()Create a builder instanceStringgetCli()The phone number of the PSTN participant that was connected in the conference, or whatever was passed as CLI for data originated/terminated calls.IntegergetDuration()The number of seconds that the participant has been connected to the conferenceStringgetId()The callId of the call leg that the participant joined the conference.BooleangetMuted()Is participant is muted or notBooleangetOnhold()Is participant is on hold or notStringtoString()
-
-
-
Method Detail
-
getCli
public String getCli()
The phone number of the PSTN participant that was connected in the conference, or whatever was passed as CLI for data originated/terminated calls.- Returns:
- The value
-
getId
public String getId()
The callId of the call leg that the participant joined the conference.- Returns:
- Uniq identifier related toi the call
-
getDuration
public Integer getDuration()
The number of seconds that the participant has been connected to the conference- Returns:
- Duration value
-
getMuted
public Boolean getMuted()
Is participant is muted or not- Returns:
- Muted state
-
getOnhold
public Boolean getOnhold()
Is participant is on hold or not- Returns:
- The on hold state
-
builder
public static ConferenceParticipant.Builder builder()
Create a builder instance- Returns:
- Dedicated builder
-
-