UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

25 lines (24 loc) 667 B
/** * 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 '../activity-extensions/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; }