/**
 * 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;
}
