@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
26 lines (23 loc) • 594 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { TabResponseCards } from './tabResponseCards'
import { TabSuggestedActions } from './tabSuggestedActions'
/**
* Interface representing the payload of a tab response.
*/
export interface TabResponsePayload {
/**
* Type of the response.
*/
type?: 'continue' | 'auth' | 'silentAuth'
/**
* Value of the response, containing response cards.
*/
value?: TabResponseCards
/**
* Suggested actions for the response.
*/
suggestedActions?: TabSuggestedActions
}