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