@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
22 lines (18 loc) • 456 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { MeetingSurface } from './meetingSurface'
/**
* Represents 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[];
}