Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/CampaignEndedCampaign.md
2025-02-20 12:59:19 -05:00

2.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-campaign-ended-campaign CampaignEndedCampaign CampaignEndedCampaign CampaignEndedCampaign pythonsdk
python
Python
sdk
CampaignEndedCampaign
V2024CampaignEndedCampaign
/tools/sdk/python/v2024/models/campaign-ended-campaign
SDK
Software Development Kit
CampaignEndedCampaign
V2024CampaignEndedCampaign

CampaignEndedCampaign

Details about the certification campaign that ended.

Properties

Name Type Description Notes
id str Unique ID for the campaign. [required]
name str The human friendly name of the campaign. [required]
description str Extended description of the campaign. [required]
created datetime The date and time the campaign was created. [required]
modified datetime The date and time the campaign was last modified. [optional]
deadline datetime The date and time the campaign is due. [required]
type Enum [ 'MANAGER', 'SOURCE_OWNER', 'SEARCH', 'ROLE_COMPOSITION' ] The type of campaign. [required]
campaign_owner CampaignActivatedCampaignCampaignOwner [required]
status Enum [ 'COMPLETED' ] The current status of the campaign. [required]
}

Example

from sailpoint.v2024.models.campaign_ended_campaign import CampaignEndedCampaign

campaign_ended_campaign = CampaignEndedCampaign(
id='2c91808576f886190176f88cac5a0010',
name='Manager Access Campaign',
description='Audit access for all employees.',
created='2021-02-16T03:04:45.815Z',
modified='2021-03-16T03:06:45.815Z',
deadline='2021-03-16T03:04:45.815Z',
type=MANAGER,
campaign_owner=sailpoint.v2024.models.campaign_activated_campaign_campaign_owner.CampaignActivated_campaign_campaignOwner(
                    id = '37f080867702c1910177031320c40n27', 
                    display_name = 'John Snow', 
                    email = 'john.snow@example.com', ),
status=COMPLETED
)

[Back to top]