@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
38 lines (35 loc) • 767 B
text/typescript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { O365ConnectorCardActionBase } from './o365ConnectorCardActionBase'
import { O365ConnectorCardSection } from './o365ConnectorCardSection'
/**
* Represents an O365 connector card.
*/
export interface O365ConnectorCard {
/**
* The title of the card.
*/
title?: string;
/**
* The text of the card.
*/
text?: string;
/**
* The summary of the card.
*/
summary?: string;
/**
* The theme color of the card.
*/
themeColor?: string;
/**
* The sections of the card.
*/
sections?: O365ConnectorCardSection[];
/**
* The potential actions of the card.
*/
potentialAction?: O365ConnectorCardActionBase[];
}