Skip to main content

SearchCriteriaFiltersValueRangeLower

Properties

NameTypeDescriptionNotes
valuestrThe lower bound value.[optional]
inclusiveboolWhether the lower bound is inclusive.[optional] [default to False]
}

Example

from sailpoint.v2024.models.search_criteria_filters_value_range_lower import SearchCriteriaFiltersValueRangeLower

search_criteria_filters_value_range_lower = SearchCriteriaFiltersValueRangeLower(
value='10',
inclusive=True
)

[Back to top]