interface NumberVariable {
    decimalCharacterStyleId?: string;
    decimalSeparator: string;
    helpText?: null | string;
    id: string;
    isReadonly: boolean;
    isRequired: boolean;
    isVisible: boolean;
    label?: null | string;
    maxValue?: number;
    minValue?: number;
    name: string;
    numberOfDecimals: number;
    occurrences: number;
    parentId?: string;
    placeholder?: null | string;
    prefix?: ValueWithStyle;
    privateData: PrivateData;
    showStepper: boolean;
    stepSize: number;
    suffix?: ValueWithStyle;
    thousandsSeparator: string;
    type: VariableType;
    value: number;
    visibility: VariableVisibility;
}

Hierarchy (View Summary)

Properties

decimalCharacterStyleId?: string
decimalSeparator: string
helpText?: null | string
id: string
isReadonly: boolean
isRequired: boolean
isVisible: boolean
label?: null | string
maxValue?: number
minValue?: number
name: string
numberOfDecimals: number
occurrences: number
parentId?: string
placeholder?: null | string
privateData: PrivateData
showStepper: boolean
stepSize: number
thousandsSeparator: string
value: number
visibility: VariableVisibility