Interface UnbluMessageCustomActionInvocation
-
- All Superinterfaces:
UnbluCustomActionInvocation
public interface UnbluMessageCustomActionInvocation extends UnbluCustomActionInvocation
An extension of theUnbluCustomActionInvocation
interface for custom actions invoked on a message.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getMessageId()
Get the ID of the message the action was invoked on.java.lang.String
getMessageSenderPersonDisplayName()
Get the display name of the person who sent the message the action was invoked on.java.lang.String
getMessageSenderPersonId()
Get the ID of the person who sent the message the action was invoked on.java.lang.String
getMessageText()
Get the text of the message the action was invoked on.java.lang.String
getMessageType()
Get the type of the message the action was invoked on.-
Methods inherited from interface com.unblu.sdk.core.conversation.customaction.UnbluCustomActionInvocation
geIinvocationId, getConversationId, getInvocationTimestamp, getInvokingPersonDisplayName, getInvokingPersonId, getKey
-
-
-
-
Method Detail
-
getMessageId
java.lang.String getMessageId()
Get the ID of the message the action was invoked on.- Returns:
- The ID of the message as a string.
-
getMessageType
java.lang.String getMessageType()
Get the type of the message the action was invoked on.- Returns:
- The type of the message as a string.
-
getMessageSenderPersonId
java.lang.String getMessageSenderPersonId()
Get the ID of the person who sent the message the action was invoked on.- Returns:
- The ID of the message sender as a string.
-
getMessageSenderPersonDisplayName
java.lang.String getMessageSenderPersonDisplayName()
Get the display name of the person who sent the message the action was invoked on.- Returns:
- The display name of the message sender as a string.
-
getMessageText
java.lang.String getMessageText()
Get the text of the message the action was invoked on.- Returns:
- The text of the message as a string.
-
-