@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
21 lines (18 loc) • 444 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { ConversationMembers } from './conversationMembers'
/**
* Represents the result of a conversation query.
*/
export interface ConversationsResult {
/**
* A token to retrieve the next page of results.
*/
continuationToken: string;
/**
* A list of conversation members.
*/
conversations: ConversationMembers[];
}