@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
22 lines (18 loc) • 468 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { MeetingSurface } from './meetingSurface'
/**
* Interface representing the value of a targeted meeting notification.
*/
export interface TargetedMeetingNotificationValue {
/**
* The recipients of the notification.
*/
recipients: string[];
/**
* The surfaces where the notification will be displayed.
*/
surfaces: MeetingSurface[];
}