@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
27 lines (24 loc) • 621 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { ConversationAccount } from '@microsoft/agents-activity'
import { MeetingDetails } from '../meeting/meetingDetails'
import { TeamsChannelAccount } from './teamsChannelAccount'
/**
* Represents information about a meeting.
*/
export interface MeetingInfo {
/**
* Details of the meeting.
*/
details: MeetingDetails;
/**
* Conversation account associated with the meeting.
*/
conversation: ConversationAccount;
/**
* Organizer of the meeting.
*/
organizer: TeamsChannelAccount;
}