@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
19 lines (18 loc) • 482 B
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[];
}