UNPKG

@microsoft/agents-hosting-teams

Version:

Microsoft 365 Agents SDK for JavaScript

25 lines (21 loc) 556 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Defines the types of responses that can be returned after executing an Adaptive Card action. */ export enum AdaptiveCardActionExecuteResponseType { /** * Replaces the Adaptive Card only for the user who interacted with it. */ REPLACE_FOR_INTERACTOR, /** * Replaces the Adaptive Card for all users. */ REPLACE_FOR_ALL, /** * Sends a new message containing an Adaptive Card to all users. */ NEW_MESSAGE_FOR_ALL }