MessageActionsPayloadFrom Class

  • java.lang.Object
    • com.microsoft.bot.schema.teams.MessageActionsPayloadFrom

public class MessageActionsPayloadFrom

Represents a user, application, or conversation type that either sent or was referenced in a message.

Constructor Summary

Constructor Description
MessageActionsPayloadFrom()

Method Summary

Modifier and Type Method and Description
MessageActionsPayloadApp getApplication()

Gets details of the app.

MessageActionsPayloadConversation getConversation()

Gets details of the conversation.

MessageActionsPayloadUser getUser()

Gets details of the user.

void setApplication(MessageActionsPayloadApp withApplication)

Sets details of the app.

void setConversation(MessageActionsPayloadConversation withConversation)

Sets details of the conversation.

void setUser(MessageActionsPayloadUser withUser)

Sets details of the user.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

MessageActionsPayloadFrom

public MessageActionsPayloadFrom()

Method Details

getApplication

public MessageActionsPayloadApp getApplication()

Gets details of the app.

Returns:

The application details.

getConversation

public MessageActionsPayloadConversation getConversation()

Gets details of the conversation.

Returns:

The conversation details.

getUser

public MessageActionsPayloadUser getUser()

Gets details of the user.

Returns:

The payload user.

setApplication

public void setApplication(MessageActionsPayloadApp withApplication)

Sets details of the app.

Parameters:

withApplication - The application details.

setConversation

public void setConversation(MessageActionsPayloadConversation withConversation)

Sets details of the conversation.

Parameters:

withConversation - The conversation details.

setUser

public void setUser(MessageActionsPayloadUser withUser)

Sets details of the user.

Parameters:

withUser - The payload user.

Applies to