blob: 57f5915cb85f237bc8aa96fcfd7debc4c0429157 [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;
};