@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
21 lines (18 loc) • 469 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { BatchFailedEntry } from './batchFailedEntry'
/**
* Represents the response for failed entries in a batch operation.
*/
export interface BatchFailedEntriesResponse {
/**
* A token to retrieve the next page of results.
*/
continuationToken: string;
/**
* A list of failed entry responses.
*/
failedEntryResponses: BatchFailedEntry[];
}