mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.9 KiB
1.9 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-template-teams | TemplateTeams | TemplateTeams | TemplateTeams | pythonsdk |
|
/tools/sdk/python/beta/models/template-teams |
|
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 | [optional] | |
| custom_fields | TemplateSlackCustomFields | [optional] | |
| } |
Example
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 = '', )
)