-
Daniel Göbel authoredDaniel Göbel authored
WorkflowVersion.ts 1.03 KiB
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { ParameterExtension_Output } from './ParameterExtension_Output';
import type { Status } from './Status';
export type WorkflowVersion = {
/**
* Status of the workflow version
*/
status: Status;
/**
* ID of the corresponding workflow
*/
workflow_id: string;
/**
* Version of the Workflow. Should follow semantic versioning
*/
version: string;
/**
* Hash of the git commit
*/
workflow_version_id: string;
/**
* URL of the icon for this workflow version
*/
icon_url?: (string | null);
/**
* Timestamp when the version was created as UNIX timestamp
*/
created_at: number;
/**
* Optional modes his workflow version has
*/
modes?: Array<string>;
/**
* Parameter extension specific for this CloWM instance
*/
parameter_extension?: (ParameterExtension_Output | null);
};