Skip to main content

CampaignFilterDetailsCriteriaListInner

Properties

NameTypeDescriptionNotes
typeCriteriaType[required]
operationOperation[optional]
var_propertystrSpecified key from the type of criteria.[required]
valuestrValue for the specified key from the type of criteria.[required]
negate_resultboolIf true, the filter will negate the result of the criteria.[optional] [default to False]
short_circuitboolIf true, the filter will short circuit the evaluation of the criteria.[optional] [default to False]
record_child_matchesboolIf true, the filter will record child matches for the criteria.[optional] [default to False]
idstrThe unique ID of the criteria.[optional]
suppress_matched_itemsboolIf this value is true, then matched items will not only be excluded from the campaign, they will also not have archived certification items created. Such items will not appear in the exclusion report.[optional] [default to False]
children[]objectList of child criteria.[optional]
}

Example

from sailpoint.v2025.models.campaign_filter_details_criteria_list_inner import CampaignFilterDetailsCriteriaListInner

campaign_filter_details_criteria_list_inner = CampaignFilterDetailsCriteriaListInner(
type='IDENTITY_ATTRIBUTE',
operation='EQUALS',
var_property='displayName',
value='Allie',
negate_result=False,
short_circuit=False,
record_child_matches=False,
id='5ec18cef39020d6fd7a60ad3970aba61',
suppress_matched_items=False,
children=[
None
]
)

[Back to top]