@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (17 loc) • 331 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a fact in an O365 connector card.
*/
export interface O365ConnectorCardFact {
/**
* The name of the fact.
*/
name?: string;
/**
* The value of the fact.
*/
value?: string;
}