-
Daniel Göbel authored
#32
Daniel Göbel authored#32
WorkflowVersionReduced.ts 580 B
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { Status } from './Status';
export type WorkflowVersionReduced = {
/**
* Status of the workflow version
*/
status: Status;
/**
* Version of the Workflow. Should follow semantic versioning
*/
version: string;
/**
* Hash of the git commit
*/
git_commit_hash: string;
/**
* URL of the icon for this workflow version
*/
icon_url?: string;
/**
* Timestamp when the version was created
*/
created_at: string;
};