@microsoft/agents-activity
Version:
Microsoft 365 Agents SDK for JavaScript. Activity Protocol serialization and deserialization.
23 lines (22 loc) • 455 B
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;
}