UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

17 lines (14 loc) 477 B
/** * 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[]; }