@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
23 lines (21 loc) • 430 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents the response of an adaptive card invoke request.
*/
export interface AdaptiveCardInvokeResponse {
/**
* The status code of the response.
*/
statusCode: number
/**
* The type of the response.
*/
type: string
/**
* The value of the response.
*/
value: Record<string, unknown>
}