Skip to main content
Module

x/windmill/windmill-api/models/FlowModule.ts

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
File
/** * Windmill server API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 1.28.1 * Contact: contact@windmill.dev * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */
import { FlowModuleValue } from './FlowModuleValue.ts';import { InputTransform } from './InputTransform.ts';import { HttpFile } from '../http/http.ts';
export class FlowModule { 'inputTransform': { [key: string]: InputTransform; }; 'value': FlowModuleValue; 'stopAfterIfExpr'?: string; 'skipIfStopped'?: boolean;
static readonly discriminator: string | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "inputTransform", "baseName": "input_transform", "type": "{ [key: string]: InputTransform; }", "format": "" }, { "name": "value", "baseName": "value", "type": "FlowModuleValue", "format": "" }, { "name": "stopAfterIfExpr", "baseName": "stop_after_if_expr", "type": "string", "format": "" }, { "name": "skipIfStopped", "baseName": "skip_if_stopped", "type": "boolean", "format": "" } ];
static getAttributeTypeMap() { return FlowModule.attributeTypeMap; }
public constructor() { }}