mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: v2024-campaign-template-owner-ref
|
||||
title: CampaignTemplateOwnerRef
|
||||
pagination_label: CampaignTemplateOwnerRef
|
||||
sidebar_label: CampaignTemplateOwnerRef
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'CampaignTemplateOwnerRef', 'V2024CampaignTemplateOwnerRef']
|
||||
slug: /tools/sdk/python/v2024/models/campaign-template-owner-ref
|
||||
tags: ['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
|
||||
|
||||
```python
|
||||
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]](#)
|
||||
|
||||
Reference in New Issue
Block a user