Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/Range.md
2025-02-20 12:59:19 -05:00

858 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
range Range Range Range pythonsdk
python
Python
sdk
Range
Range
/tools/sdk/python/v3/models/range
SDK
Software Development Kit
Range
Range

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, )
)

[Back to top]