Skip to main content

Bound

Properties

NameTypeDescriptionNotes
valuestrThe value of the range's endpoint.[required]
inclusiveboolIndicates 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
)

[Back to top]