Skip to main content

SavedSearchDetailFilters

Properties

NameTypeDescriptionNotes
typeFilterType[optional]
rangeRange[optional]
terms[]strThe terms to be filtered.[optional]
excludeboolIndicates if the filter excludes results.[optional] [default to False]
}

Example

from sailpoint.v3.models.saved_search_detail_filters import SavedSearchDetailFilters

saved_search_detail_filters = SavedSearchDetailFilters(
type='RANGE',
range=sailpoint.v3.models.range.Range(
lower = sailpoint.v3.models.bound.Bound(
value = '1',
inclusive = False, ),
upper = sailpoint.v3.models.bound.Bound(
value = '1',
inclusive = False, ), ),
terms=[
'account_count'
],
exclude=False
)

[Back to top]