mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
858 B
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 |
|
/tools/sdk/python/v3/models/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, )
)