Interface OutgoingMessengerMessageReadStatusInfo
-
- All Superinterfaces:
ChatProvider
public interface OutgoingMessengerMessageReadStatusInfo extends ChatProvider
AnOutgoingMessengerMessageReadStatusInfo
object provides information about anOutgoingMessengerMessageReadStatus
.- Since:
- 12.20
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChatChannel
getOutgoingChatChannel()
MessengerAccount
getOutgoingMessengerAccount()
OutgoingMessengerMessageReadStatus
getOutgoingMessengerMessageReadStatus()
java.util.Optional<User>
getSendingUser()
-
Methods inherited from interface com.novomind.ecom.api.iagent.provider.ChatProvider
getChat
-
-
-
-
Method Detail
-
getOutgoingMessengerMessageReadStatus
OutgoingMessengerMessageReadStatus getOutgoingMessengerMessageReadStatus()
- Returns:
- the
OutgoingMessengerConversationReadStatus
- Since:
- 12.20
-
getOutgoingMessengerAccount
MessengerAccount getOutgoingMessengerAccount()
- Returns:
- the outgoing messenger account of the read status.
- Since:
- 12.20
-
getOutgoingChatChannel
ChatChannel getOutgoingChatChannel()
- Returns:
- the outgoing chat channel of the read status.
- Since:
- 12.20
-
getSendingUser
java.util.Optional<User> getSendingUser()
- Returns:
- the user, that sent the read status. If the read status has been sent automatically, the user will not be available.
- Since:
- 12.20
-
-