Skip to main content

ListCampaignFilters200Response

Properties

NameTypeDescriptionNotes
items[]CampaignFilterDetailsList of campaign filters.[optional]
countintNumber of filters returned.[optional]
}

Example

from sailpoint.v2024.models.list_campaign_filters200_response import ListCampaignFilters200Response

list_campaign_filters200_response = ListCampaignFilters200Response(
items=[
sailpoint.v2024.models.campaign_filter_details.CampaignFilterDetails(
id = '5ec18cef39020d6fd7a60ad3970aba61',
name = 'Identity Attribute Campaign Filter',
description = 'Campaign filter to certify data based on an identity attribute's specified property.',
owner = 'SailPoint Support',
mode = 'INCLUSION',
criteria_list = [{type=IDENTITY_ATTRIBUTE, property=displayName, value=support, operation=CONTAINS, negateResult=false, shortCircuit=false, recordChildMatches=false, id=null, suppressMatchedItems=false, children=null}],
is_system_filter = False, )
],
count=2
)

[Back to top]