UNPKG

@microsoft/agents-hosting-extensions-teams

Version:

Microsoft 365 Agents SDK for JavaScript. Teams extensions

17 lines (14 loc) 468 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { MeetingNotificationRecipientFailureInfo } from './meetingNotificationRecipientFailureInfo' /** * Represents a response to a meeting notification. */ export interface MeetingNotificationResponse { /** * Information about recipients who failed to receive the notification. */ recipientsFailureInfo?: MeetingNotificationRecipientFailureInfo[]; }