@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
17 lines (15 loc) • 375 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Interface representing the base details of a meeting.
*/
export interface MeetingDetailsBase {
/** The unique identifier of the meeting. */
id: string
/** The URL to join the meeting. */
joinUrl: string
/** The title of the meeting. */
title: string
}