Describes the parameter.

interface ParameterDescriptor {
    actualDefaultValues: ParameterValue[];
    allowBlank: boolean;
    dataType: any;
    dateOnly: boolean;
    defaultValue: ParameterValue;
    dependsOn: string[];
    displayFormat: string;
    hidden: boolean;
    multiValue: boolean;
    multiline: boolean;
    name: string;
    nullable: boolean;
    prompt: string;
    selectAllValue: any;
    usedInQuery: boolean;
    validValues: ParameterValue;
}

Properties

actualDefaultValues: ParameterValue[]
allowBlank: boolean
dataType: any
dateOnly: boolean
defaultValue: ParameterValue
dependsOn: string[]
displayFormat: string
hidden: boolean
multiValue: boolean
multiline: boolean
name: string
nullable: boolean
prompt: string
selectAllValue: any
usedInQuery: boolean
validValues: ParameterValue