mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
705 B
705 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| bound | Bound | Bound | Bound | pythonsdk |
|
/tools/sdk/python/v3/models/bound |
|
Bound
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | The value of the range's endpoint. | [required] |
| inclusive | bool | Indicates if the endpoint is included in the range. | [optional] [default to False] |
| } |
Example
from sailpoint.v3.models.bound import Bound
bound = Bound(
value='1',
inclusive=False
)