Class UserConversationUpdater
- java.lang.Object
-
- com.twilio.base.Updater<UserConversation>
-
- com.twilio.rest.conversations.v1.user.UserConversationUpdater
-
public class UserConversationUpdater extends Updater<UserConversation>
-
-
Constructor Summary
Constructors Constructor Description UserConversationUpdater(String pathUserSid, String pathConversationSid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserConversationUpdater
setLastReadMessageIndex(Integer lastReadMessageIndex)
UserConversationUpdater
setLastReadTimestamp(ZonedDateTime lastReadTimestamp)
UserConversationUpdater
setNotificationLevel(UserConversation.NotificationLevel notificationLevel)
UserConversation
update(TwilioRestClient client)
Execute a request using specified client.-
Methods inherited from class com.twilio.base.Updater
update, updateAsync, updateAsync
-
-
-
-
Method Detail
-
setNotificationLevel
public UserConversationUpdater setNotificationLevel(UserConversation.NotificationLevel notificationLevel)
-
setLastReadTimestamp
public UserConversationUpdater setLastReadTimestamp(ZonedDateTime lastReadTimestamp)
-
setLastReadMessageIndex
public UserConversationUpdater setLastReadMessageIndex(Integer lastReadMessageIndex)
-
update
public UserConversation update(TwilioRestClient client)
Description copied from class:Updater
Execute a request using specified client.- Specified by:
update
in classUpdater<UserConversation>
- Parameters:
client
- client used to make request- Returns:
- Requested object
-
-