@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
19 lines (18 loc) • 419 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { ChannelAccount } from '@microsoft/agents-activity';
/**
* Represents the members of a conversation.
*/
export interface ConversationMembers {
/**
* The ID of the conversation.
*/
id: string;
/**
* The list of members in the conversation.
*/
members: ChannelAccount[];
}