@microsoft/agents-copilotstudio-client
Version:
Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.
20 lines (16 loc) • 438 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Activity } from '@microsoft/agents-activity'
export class ExecuteTurnRequest {
/** The activity to be executed. */
activity?: Activity
/**
* Creates an instance of ExecuteTurnRequest.
* @param activity The activity to be executed.
*/
constructor (activity?: Activity) {
this.activity = activity
}
}