UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

19 lines (18 loc) 578 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { MeetingDetailsBase } from './meetingDetailsBase'; /** * Represents the details of a meeting. */ export interface MeetingDetails extends MeetingDetailsBase { /** The Microsoft Graph resource ID of the meeting. */ msGraphResourceId: string; /** The scheduled start time of the meeting. */ scheduledStartTime?: Date; /** The scheduled end time of the meeting. */ scheduledEndTime?: Date; /** The type of the meeting. */ type: string; }