@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
15 lines (14 loc) • 484 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { MeetingNotificationRecipientFailureInfo } from '../meeting/meetingNotificationRecipientFailureInfo';
/**
* Represents a response to a meeting notification.
*/
export interface MeetingNotificationResponse {
/**
* Information about recipients who failed to receive the notification.
*/
recipientsFailureInfo?: MeetingNotificationRecipientFailureInfo[];
}