Filter
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.v3.models.filter import Filter
filter = Filter(
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
)