@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
25 lines (22 loc) • 429 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { ChannelAccount } from '../conversation/channelAccount'
/**
* Represents a Mention entity.
*/
export interface Mention {
/**
* The account that is mentioned.
*/
mentioned: ChannelAccount
/**
* The text of the mention.
*/
text: string
/**
* The type of the mention.
*/
type: string
}