blob: fb66ce4a8d5f3e2f5b6654ed3ce03d880717056b [file]
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Pydantic model that represents a transition for storing/visualization in the UI
*/
export type TransitionModel = {
type?: string;
from_: string;
to: string;
condition: string;
};