interface PC.IIntegerRange {
// Properties
${group}: ${GroupBy};
${minValue}: number;
${maxValue}: number;
${decimal}?: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
group: ${GroupBy};
// This property is not available in managed environment
// This property is not available in native environment
Grouping of the range.
minValue: number;
// This property is not available in managed environment
// This property is not available in native environment
Minimum range value
maxValue: number;
// This property is not available in managed environment
// This property is not available in native environment
Maximum range value.
decimal?: boolean;
// This property is not available in managed environment
// This property is not available in native environment
If false or omitted, minValue and maxValue are displayed as hexadecimal values in UI, otherwise, they are displayed as decimal values.