@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (16 loc) • 453 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Enum representing the names of message invoke actions.
*
* This enum is used to define the specific invoke actions that can be triggered
* in the context of message handling.
*/
export enum MessageInvokeNames {
/**
* Represents the action to fetch a task associated with a message.
*/
FETCH_INVOKE_NAME = 'message/fetchTask'
}