UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

15 lines (12 loc) 388 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { OnBehalfOf } from '../channel-data' /** * Interface representing the channel data for a meeting notification. */ export interface MeetingNotificationChannelData { /** Optional list of entities on behalf of whom the notification is sent. */ onBehalfOf?: OnBehalfOf[]; }