Interface PolytronPipelineParameter

The PolytronPipelineParameter represents a parameter that can be defined on the start of a pipeline.

interface PolytronPipelineParameter {
    FriendlyName?: string;
    ID: string;
    Meta?: PolytronObjectMeta;
    Name: string;
    Value?: string | number | boolean;
    VariableType: string;
}

Properties

FriendlyName?: string

The friendly name.

ID: string
Name: string

The name.

Value?: string | number | boolean

The arithemtic value, for arithmetic types.

VariableType: string

The variable type.