Class ParticipantUpdater
- java.lang.Object
-
- com.twilio.base.Updater<Participant>
-
- com.twilio.rest.api.v2010.account.conference.ParticipantUpdater
-
public class ParticipantUpdater extends Updater<Participant>
-
-
Constructor Summary
Constructors Constructor Description ParticipantUpdater(String pathConferenceSid, String pathCallSid)
ParticipantUpdater(String pathAccountSid, String pathConferenceSid, String pathCallSid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParticipantUpdater
setAnnounceMethod(HttpMethod announceMethod)
ParticipantUpdater
setAnnounceUrl(String announceUrl)
ParticipantUpdater
setAnnounceUrl(URI announceUrl)
ParticipantUpdater
setBeepOnExit(Boolean beepOnExit)
ParticipantUpdater
setCallSidToCoach(String callSidToCoach)
ParticipantUpdater
setCoaching(Boolean coaching)
ParticipantUpdater
setEndConferenceOnExit(Boolean endConferenceOnExit)
ParticipantUpdater
setHold(Boolean hold)
ParticipantUpdater
setHoldMethod(HttpMethod holdMethod)
ParticipantUpdater
setHoldUrl(String holdUrl)
ParticipantUpdater
setHoldUrl(URI holdUrl)
ParticipantUpdater
setMuted(Boolean muted)
ParticipantUpdater
setWaitMethod(HttpMethod waitMethod)
ParticipantUpdater
setWaitUrl(String waitUrl)
ParticipantUpdater
setWaitUrl(URI waitUrl)
Participant
update(TwilioRestClient client)
Execute a request using specified client.-
Methods inherited from class com.twilio.base.Updater
update, updateAsync, updateAsync
-
-
-
-
Method Detail
-
setMuted
public ParticipantUpdater setMuted(Boolean muted)
-
setHold
public ParticipantUpdater setHold(Boolean hold)
-
setHoldUrl
public ParticipantUpdater setHoldUrl(URI holdUrl)
-
setHoldUrl
public ParticipantUpdater setHoldUrl(String holdUrl)
-
setHoldMethod
public ParticipantUpdater setHoldMethod(HttpMethod holdMethod)
-
setAnnounceUrl
public ParticipantUpdater setAnnounceUrl(URI announceUrl)
-
setAnnounceUrl
public ParticipantUpdater setAnnounceUrl(String announceUrl)
-
setAnnounceMethod
public ParticipantUpdater setAnnounceMethod(HttpMethod announceMethod)
-
setWaitUrl
public ParticipantUpdater setWaitUrl(URI waitUrl)
-
setWaitUrl
public ParticipantUpdater setWaitUrl(String waitUrl)
-
setWaitMethod
public ParticipantUpdater setWaitMethod(HttpMethod waitMethod)
-
setBeepOnExit
public ParticipantUpdater setBeepOnExit(Boolean beepOnExit)
-
setEndConferenceOnExit
public ParticipantUpdater setEndConferenceOnExit(Boolean endConferenceOnExit)
-
setCoaching
public ParticipantUpdater setCoaching(Boolean coaching)
-
setCallSidToCoach
public ParticipantUpdater setCallSidToCoach(String callSidToCoach)
-
update
public Participant update(TwilioRestClient client)
Description copied from class:Updater
Execute a request using specified client.- Specified by:
update
in classUpdater<Participant>
- Parameters:
client
- client used to make request- Returns:
- Requested object
-
-