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.saved_search.models.savedsearchdetail_filters import SavedsearchdetailFilters

savedsearchdetail_filters = SavedsearchdetailFilters(
type='RANGE',
range=sailpoint.saved_search.models.range.range(
lower = sailpoint.saved_search.models.bound.bound(
value = '1',
inclusive = False, ),
upper = sailpoint.saved_search.models.bound.bound(
value = '1',
inclusive = False, ), ),
terms=[
'account_count'
],
exclude=False
)

[Back to top]