@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
22 lines (21 loc) • 433 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents a token exchange invoke request.
*/
export interface TokenExchangeInvokeRequest {
/**
* The unique identifier for the request.
*/
id: string;
/**
* The name of the connection.
*/
connectionName: string;
/**
* The token to be exchanged.
*/
token: string;
}