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