starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -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]](#)