@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
21 lines (18 loc) • 404 B
text/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[];
}