@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
25 lines (22 loc) • 512 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { MessageActionsPayloadFrom } from './messageActionsPayloadFrom'
/**
* Represents a mention in the message actions payload.
*/
export interface MessageActionsPayloadMention {
/**
* The unique identifier of the mention.
*/
id?: number
/**
* The text of the mention.
*/
mentionText?: string
/**
* The entity that was mentioned.
*/
mentioned?: MessageActionsPayloadFrom
}