Class ParticipantUpdater
- java.lang.Object
-
- com.twilio.base.Updater<Participant>
-
- com.twilio.rest.conversations.v1.service.conversation.ParticipantUpdater
-
public class ParticipantUpdater extends Updater<Participant>
-
-
Constructor Summary
Constructors Constructor Description ParticipantUpdater(String pathChatServiceSid, String pathConversationSid, String pathSid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParticipantUpdater
setAttributes(String attributes)
ParticipantUpdater
setDateCreated(ZonedDateTime dateCreated)
ParticipantUpdater
setDateUpdated(ZonedDateTime dateUpdated)
ParticipantUpdater
setIdentity(String identity)
ParticipantUpdater
setLastReadMessageIndex(Integer lastReadMessageIndex)
ParticipantUpdater
setLastReadTimestamp(String lastReadTimestamp)
ParticipantUpdater
setMessagingBindingProjectedAddress(String messagingBindingProjectedAddress)
ParticipantUpdater
setMessagingBindingProxyAddress(String messagingBindingProxyAddress)
ParticipantUpdater
setRoleSid(String roleSid)
ParticipantUpdater
setXTwilioWebhookEnabled(Participant.WebhookEnabledType xTwilioWebhookEnabled)
Participant
update(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)
-
setIdentity
public ParticipantUpdater setIdentity(String identity)
-
setAttributes
public ParticipantUpdater setAttributes(String attributes)
-
setRoleSid
public ParticipantUpdater setRoleSid(String roleSid)
-
setMessagingBindingProxyAddress
public ParticipantUpdater setMessagingBindingProxyAddress(String messagingBindingProxyAddress)
-
setMessagingBindingProjectedAddress
public ParticipantUpdater setMessagingBindingProjectedAddress(String messagingBindingProjectedAddress)
-
setLastReadMessageIndex
public ParticipantUpdater setLastReadMessageIndex(Integer lastReadMessageIndex)
-
setLastReadTimestamp
public ParticipantUpdater setLastReadTimestamp(String lastReadTimestamp)
-
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
-
-