blob: 12685ab965d739fce332e84558cceb2105b4d53f [file]
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Pydantic model that represents an action for storing/visualization in the UI
*/
export type ActionModel = {
type?: string;
name: string;
reads: Array<string>;
writes: Array<string>;
code: string;
inputs?: Array<string>;
optional_inputs?: Array<string>;
};