@microsoft/agents-hosting-extensions-teams
Version:
Microsoft 365 Agents SDK for JavaScript. Teams extensions
21 lines (20 loc) • 729 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { MeetingNotificationBase } from './meetingNotificationBase';
import { MeetingNotificationChannelData } from './meetingNotificationChannelData';
import { TargetedMeetingNotificationValue } from './targetedMeetingNotificationValue';
/**
* Represents a targeted meeting notification.
*/
export interface TargetedMeetingNotification extends MeetingNotificationBase<TargetedMeetingNotificationValue> {
/**
* The type of the notification.
*/
type: 'targetedMeetingNotification';
/**
* The channel data associated with the notification.
*/
channelData?: MeetingNotificationChannelData;
}