Skip to main content

Range

The range of values to be filtered.

Properties

NameTypeDescriptionNotes
lowerBound[optional]
upperBound[optional]
}

Example

from sailpoint.v2024.models.range import Range

range = Range(
lower=sailpoint.v2024.models.bound.Bound(
value = '1',
inclusive = False, ),
upper=sailpoint.v2024.models.bound.Bound(
value = '1',
inclusive = False, )
)

[Back to top]