aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/quickViewResponse.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

42 lines
No EOL
1.2 KiB
TypeScript

import { QuickViewData } from './quickViewData';
import { AdaptiveCard } from 'adaptivecards';
import { FocusParameters } from './actions/focusParameters';
import { ExternalLinkActionParameters } from './actions/cardAction';
/**
* SharePoint ACE Quick view response payload.
*/
export interface QuickViewResponse {
/**
* The quick view data.
*/
data: QuickViewData;
/**
* The adaptive card template for the quick view.
*/
template: AdaptiveCard;
/**
* The view id.
*/
viewId: string;
/**
* The title of the quick view.
*/
title: string;
/**
* An optional external link to be displayed in the navigation bar above the Adaptive Card.
*/
externalLink: ExternalLinkActionParameters;
/**
* An optional focus element to set focus when the view is rendered for accessibility purposes.
*/
focusParameters: FocusParameters;
/**
* Value indicating whether the client should trigger a single sign on flow
*/
requiresSso?: boolean;
/**
* Value representing the view id of the view to load once SSO is complete
*/
postSsoViewId?: string;
}
//# sourceMappingURL=quickViewResponse.d.ts.map