@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
22 lines (21 loc) • 438 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the response from a conversation resource operation.
*/
export interface ConversationResourceResponse {
/**
* The ID of the activity.
*/
activityId: string;
/**
* The service URL.
*/
serviceUrl: string;
/**
* The ID of the conversation resource.
*/
id: string;
}