Skip to main content

CampaignAllOfFilter

Determines which items will be included in this campaign. The default campaign filter is used if this field is left blank.

Properties

NameTypeDescriptionNotes
idstrThe ID of whatever type of filter is being used.[optional]
typeEnum [ 'CAMPAIGN_FILTER', 'RULE' ]Type of the filter[optional]
namestrName of the filter[optional]
}

Example

from sailpoint.v3.models.campaign_all_of_filter import CampaignAllOfFilter

campaign_all_of_filter = CampaignAllOfFilter(
id='0fbe863c063c4c88a35fd7f17e8a3df5',
type='CAMPAIGN_FILTER',
name='Test Filter'
)

[Back to top]