| /* 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; | |
| }; | |