aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/aceData.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

46 lines
No EOL
1.1 KiB
TypeScript

/**
* SharePoint ACE Data object
*/
export interface AceData {
/**
* The card size.
*/
cardSize: AceCardSize;
/**
* The value of this property is stored in the serialized data of the Adaptive Card Extension.
* It can be used to manage versioning of the Adaptive Card Extension.
*
* @remarks - although there is no restriction on the format of this property, it is recommended to use semantic versioning.
*/
dataVersion: string;
/**
* The unique id (Guid) of the ACE.
*/
id: string;
/**
* The title of the ACE.
*/
title: string;
/**
* The icon of the ACE.
*/
iconProperty: string;
/**
* The description of the ACE.
*/
description: string;
/**
* The visibility of the Adaptive Card Extension.
* true if not specified.
*/
isVisible?: boolean;
/**
* The properties of the ACE.
*/
properties: any;
}
/**
* SharePoint ACE Card Size
*/
export declare type AceCardSize = 'Medium' | 'Large';
//# sourceMappingURL=aceData.d.ts.map