/**
 * Documentation for the getWorkflowInstanceResult operation
 */

/**
 * Returns documentation for the getWorkflowInstanceResult operation
 * @return {string} markdown documentation
 */
export function getWorkflowInstanceResultDocs(): string {
  return `
# GetWorkflowInstanceResult Operation

## General Description

The \`getWorkflowInstanceResult\` operation retrieves the result of a completed workflow instance.

## Detailed Description

This documentation is a placeholder. The getWorkflowInstanceResult operation details will be updated in a future release.

## Input Parameters

This section will be updated with the correct parameters in a future release.

## Response

This section will be updated with the correct response format in a future release.

## Example Usage

This section will be updated with examples in a future release.

## Additional Information

This section will be updated with additional information in a future release.
`;
}

/**
 * Returns a brief summary of the getWorkflowInstanceResult operation.
 * @return {string} A short description of the function.
 */
export function getWorkflowInstanceResultSummary(): string {
  return `
**Purpose**: Retrieves result data from a completed workflow instance.

**When to use**:
- After workflow completion
- Need final output values
- Analyzing workflow results

**Note**: Placeholder - full documentation coming in future release.
`;
}

export default getWorkflowInstanceResultDocs; 