Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/Range.md
2025-04-01 09:23:12 -04:00

886 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-range Range Range Range pythonsdk
python
Python
sdk
Range
V2025Range
/tools/sdk/python/v2025/models/range
SDK
Software Development Kit
Range
V2025Range

Range

The range of values to be filtered.

Properties

Name Type Description Notes
lower Bound [optional]
upper Bound [optional]
}

Example

from sailpoint.v2025.models.range import Range

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

[Back to top]