UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

19 lines (18 loc) 590 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { MeetingDetailsBase } from './meetingDetailsBase'; /** * Interface representing 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; }