Home > @i2analyze/i2connect > services > INumberCondition
services.INumberCondition interface
A condition that prompts the user for a numeric value.
Signature:
interface INumberCondition extends IConditionBase
Extends: IConditionBase
Introduced: API version 1.0
Properties
Property | Type | Description |
---|---|---|
defaultValue? | number | RequestSpecificValue<number> | (Optional) Gets the default value for the condition. |
description? | string | RequestSpecificValue<string> | (Optional) Gets a description of the condition, which might be displayed in the user interface. (Inherited from IConditionBase) |
hide? | HidePredicate | (Optional) Gets whether the condition should be hidden from the current user, based on information in the request. (Inherited from IConditionBase) |
isMandatory? | boolean | (Optional) Indicates whether the user must provide a value for the condition before they can use the service. (Inherited from IConditionBase) |
label | string | RequestSpecificValue<string> | Gets the label for the condition, which is displayed in the user interface. (Inherited from IConditionBase) |
logicalType | 'integer' | 'double' | Gets the logical types of values that fulfill the condition. |
maxValue? | number | (Optional) Gets the highest value that still fulfills the condition. |
minValue? | number | (Optional) Gets the lowest value that still fulfills the condition. |