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

1.3 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-template-owner-ref CampaignTemplateOwnerRef CampaignTemplateOwnerRef CampaignTemplateOwnerRef pythonsdk
python
Python
sdk
CampaignTemplateOwnerRef
V2024CampaignTemplateOwnerRef
/tools/sdk/python/v2024/models/campaign-template-owner-ref
SDK
Software Development Kit
CampaignTemplateOwnerRef
V2024CampaignTemplateOwnerRef

CampaignTemplateOwnerRef

The owner of this template, and the owner of campaigns generated from this template via a schedule. This field is automatically populated at creation time with the current user.

Properties

Name Type Description Notes
id str Id of the owner [optional]
type Enum [ 'IDENTITY' ] Type of the owner [optional]
name str Name of the owner [optional]
email str Email of the owner [optional]
}

Example

from sailpoint.v2024.models.campaign_template_owner_ref import CampaignTemplateOwnerRef

campaign_template_owner_ref = CampaignTemplateOwnerRef(
id='2c918086676d3e0601677611dbde220f',
type='IDENTITY',
name='Mister Manager',
email='mr.manager@example.com'
)

[Back to top]