@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
28 lines (25 loc) • 590 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* The type of conversation identity.
*/
export type ConversationIdentityType = 'team' | 'channel'
/**
* Represents a conversation in the message actions payload.
*/
export interface MessageActionsPayloadConversation {
/**
* The type of conversation identity.
*/
conversationIdentityType?: ConversationIdentityType
/**
* The unique identifier of the conversation.
*/
id?: string
/**
* The display name of the conversation.
*/
displayName?: string
}