fabro/lib/packages/fabro-api-client/src/models/render-workflow-graph-request.ts

33 lines
907 B
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* Fabro Run API
* HTTP API for managing Fabro workflow run executions.
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { RenderWorkflowGraphDirection } from './render-workflow-graph-direction';
// May contain unused imports in some cases
// @ts-ignore
import type { RenderWorkflowGraphFormat } from './render-workflow-graph-format';
// May contain unused imports in some cases
// @ts-ignore
import type { RunManifest } from './run-manifest';
export interface RenderWorkflowGraphRequest {
'manifest': RunManifest;
'format'?: RenderWorkflowGraphFormat;
'direction'?: RenderWorkflowGraphDirection;
}