Package version:

Interface ScriptActivityParameter

Parameters of a script block.

interface ScriptActivityParameter {
    direction?: string;
    name?: any;
    size?: number;
    type?: string;
    value?: any;
}

Properties

direction?: string

The direction of the parameter.

name?: any

The name of the parameter. Type: string (or Expression with resultType string).

size?: number

The size of the output direction parameter.

type?: string

The type of the parameter.

value?: any

The value of the parameter. Type: string (or Expression with resultType string).