SavedsearchdetailFilters
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | Filtertype | [optional] | |
| range | Range | [optional] | |
| terms | []str | The terms to be filtered. | [optional] |
| exclude | bool | Indicates 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
)