Range
The range of values to be filtered.
Properties
Name | Type | Description | Notes |
---|---|---|---|
lower | Bound | [optional] | |
upper | Bound | [optional] | |
} |
Example
from sailpoint.v3.models.range import Range
range = Range(
lower=sailpoint.v3.models.bound.Bound(
value = '1',
inclusive = False, ),
upper=sailpoint.v3.models.bound.Bound(
value = '1',
inclusive = False, )
)