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:
62
docs/tools/sdk/python/Reference/Beta/Models/TemplateTeams.md
Normal file
62
docs/tools/sdk/python/Reference/Beta/Models/TemplateTeams.md
Normal file
@@ -0,0 +1,62 @@
|
||||
---
|
||||
id: beta-template-teams
|
||||
title: TemplateTeams
|
||||
pagination_label: TemplateTeams
|
||||
sidebar_label: TemplateTeams
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'TemplateTeams', 'BetaTemplateTeams']
|
||||
slug: /tools/sdk/python/beta/models/template-teams
|
||||
tags: ['SDK', 'Software Development Kit', 'TemplateTeams', 'BetaTemplateTeams']
|
||||
---
|
||||
|
||||
# TemplateTeams
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**key** | **str** | | [optional]
|
||||
**title** | **str** | | [optional]
|
||||
**text** | **str** | | [optional]
|
||||
**message_json** | **str** | | [optional]
|
||||
**is_subscription** | **bool** | | [optional]
|
||||
**approval_id** | **str** | | [optional]
|
||||
**request_id** | **str** | | [optional]
|
||||
**requested_by_id** | **str** | | [optional]
|
||||
**notification_type** | **str** | | [optional]
|
||||
**auto_approval_data** | [**TemplateSlackAutoApprovalData**](template-slack-auto-approval-data) | | [optional]
|
||||
**custom_fields** | [**TemplateSlackCustomFields**](template-slack-custom-fields) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.template_teams import TemplateTeams
|
||||
|
||||
template_teams = TemplateTeams(
|
||||
key='',
|
||||
title='',
|
||||
text='',
|
||||
message_json='',
|
||||
is_subscription=True,
|
||||
approval_id='',
|
||||
request_id='',
|
||||
requested_by_id='',
|
||||
notification_type='',
|
||||
auto_approval_data=sailpoint.beta.models.template_slack_auto_approval_data.TemplateSlack_autoApprovalData(
|
||||
is_auto_approved = '',
|
||||
item_id = '',
|
||||
item_type = '',
|
||||
auto_approval_message_json = '',
|
||||
auto_approval_title = '', ),
|
||||
custom_fields=sailpoint.beta.models.template_slack_custom_fields.TemplateSlack_customFields(
|
||||
request_type = '',
|
||||
contains_deny = '',
|
||||
campaign_id = '',
|
||||
campaign_status = '', )
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user