Class ParticipantUpdater
- java.lang.Object
-
- com.twilio.base.Updater<Participant>
-
- com.twilio.rest.conversations.v1.conversation.ParticipantUpdater
-
public class ParticipantUpdater extends Updater<Participant>
-
-
Constructor Summary
Constructors Constructor Description ParticipantUpdater(String pathConversationSid, String pathSid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParticipantUpdatersetAttributes(String attributes)ParticipantUpdatersetDateCreated(ZonedDateTime dateCreated)ParticipantUpdatersetDateUpdated(ZonedDateTime dateUpdated)ParticipantUpdatersetIdentity(String identity)ParticipantUpdatersetLastReadMessageIndex(Integer lastReadMessageIndex)ParticipantUpdatersetLastReadTimestamp(String lastReadTimestamp)ParticipantUpdatersetMessagingBindingProjectedAddress(String messagingBindingProjectedAddress)ParticipantUpdatersetMessagingBindingProxyAddress(String messagingBindingProxyAddress)ParticipantUpdatersetRoleSid(String roleSid)ParticipantUpdatersetXTwilioWebhookEnabled(Participant.WebhookEnabledType xTwilioWebhookEnabled)Participantupdate(TwilioRestClient client)Execute a request using specified client.-
Methods inherited from class com.twilio.base.Updater
update, updateAsync, updateAsync
-
-
-
-
Method Detail
-
setXTwilioWebhookEnabled
public ParticipantUpdater setXTwilioWebhookEnabled(Participant.WebhookEnabledType xTwilioWebhookEnabled)
-
setDateCreated
public ParticipantUpdater setDateCreated(ZonedDateTime dateCreated)
-
setDateUpdated
public ParticipantUpdater setDateUpdated(ZonedDateTime dateUpdated)
-
setAttributes
public ParticipantUpdater setAttributes(String attributes)
-
setRoleSid
public ParticipantUpdater setRoleSid(String roleSid)
-
setMessagingBindingProxyAddress
public ParticipantUpdater setMessagingBindingProxyAddress(String messagingBindingProxyAddress)
-
setMessagingBindingProjectedAddress
public ParticipantUpdater setMessagingBindingProjectedAddress(String messagingBindingProjectedAddress)
-
setIdentity
public ParticipantUpdater setIdentity(String identity)
-
setLastReadMessageIndex
public ParticipantUpdater setLastReadMessageIndex(Integer lastReadMessageIndex)
-
setLastReadTimestamp
public ParticipantUpdater setLastReadTimestamp(String lastReadTimestamp)
-
update
public Participant update(TwilioRestClient client)
Description copied from class:UpdaterExecute a request using specified client.- Specified by:
updatein classUpdater<Participant>- Parameters:
client- client used to make request- Returns:
- Requested object
-
-