Documentation - v1.2.0-alpha.5
    Preparing search index...

    Interface representing the details of a meeting.

    interface MeetingDetails {
        id: string;
        joinUrl: string;
        msGraphResourceId: string;
        scheduledEndTime?: Date;
        scheduledStartTime?: Date;
        title: string;
        type: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    The unique identifier of the meeting.

    joinUrl: string

    The URL to join the meeting.

    msGraphResourceId: string

    The Microsoft Graph resource ID of the meeting.

    scheduledEndTime?: Date

    The scheduled end time of the meeting.

    scheduledStartTime?: Date

    The scheduled start time of the meeting.

    title: string

    The title of the meeting.

    type: string

    The type of the meeting.