Interface ISendMessageResponse
-
- All Superinterfaces:
Serializable
public interface ISendMessageResponse extends Serializable
Common interface for the response to send message.- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull UUID
getChatUuid()
Returns the UUID of the form record chat the message was sent to.@NotNull UUID
getMessageUuid()
Returns the UUID of the form record message that was sent.Map<String,ISendMessagePluginResponse>
getPluginResponses()
Returns the plugin responses for the message.
-
-
-
Method Detail
-
getChatUuid
@NotNull @NotNull UUID getChatUuid()
Returns the UUID of the form record chat the message was sent to.- Returns:
- UUID of the form record chat.
-
getMessageUuid
@NotNull @NotNull UUID getMessageUuid()
Returns the UUID of the form record message that was sent.- Returns:
- UUID of the form record message.
-
getPluginResponses
Map<String,ISendMessagePluginResponse> getPluginResponses()
Returns the plugin responses for the message. This is a map of plugin names to plugin responses.- Returns:
- A map of plugin responses for the message.
-
-