interface ParameterJson {
    defaultValue?: string | number;
    fieldName?: string;
    parameterId?: number;
    type?: string;
}

Properties

defaultValue?: string | number

The default value that is automatically given if nothing is provided.

fieldName?: string

A string value representing the name of the field to query.

parameterId?: number

Number given to uniquely identify the specified parameter.

type?: string

The field type for the specified field parameter. See Field.FieldType.