@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (17 loc) • 367 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a failed entry in a batch operation.
*/
export interface BatchFailedEntry {
/**
* Unique identifier of the failed entry.
*/
id: string;
/**
* Error message associated with the failed entry.
*/
error: string;
}