@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
20 lines (17 loc) • 357 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the details of a user's meeting.
*/
export interface UserMeetingDetails {
/**
* Indicates if the user is currently in a meeting.
*/
inMeeting: boolean;
/**
* The role of the user in the meeting.
*/
role: string;
}