@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
26 lines (23 loc) • 547 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { BatchOperationResponse } from './batchOperationResponse'
/**
* Represents a response from a batch operation in Teams.
*/
export type TeamsBatchOperationResponse = BatchOperationResponse & {
/**
* The raw response object.
*/
_response: Response & {
/**
* The response body as text.
*/
bodyAsText: string;
/**
* The parsed response body.
*/
parsedBody: BatchOperationResponse | {};
}
}