mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
727 B
727 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-bound | Bound | Bound | Bound | pythonsdk |
|
/tools/sdk/python/v2024/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.v2024.models.bound import Bound
bound = Bound(
value='1',
inclusive=False
)