UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

22 lines (21 loc) 456 B
/** * 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>; }