blob: 64b043cf45398093e9da2b76cb743c6f4a522eac [file]
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { ActionModel } from './ActionModel';
import type { TransitionModel } from './TransitionModel';
/**
* Pydantic model that represents an application for storing/visualization in the UI
*/
export type ApplicationModel = {
type?: string;
entrypoint: string;
actions: Array<ActionModel>;
transitions: Array<TransitionModel>;
};