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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-template-slack | TemplateSlack | TemplateSlack | TemplateSlack | pythonsdk |
|
/tools/sdk/python/v2024/models/template-slack |
|
TemplateSlack
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | [optional] | |
| text | str | [optional] | |
| blocks | str | [optional] | |
| attachments | str | [optional] | |
| notification_type | str | [optional] | |
| approval_id | str | [optional] | |
| request_id | str | [optional] | |
| requested_by_id | str | [optional] | |
| is_subscription | bool | [optional] | |
| auto_approval_data | TemplateSlackAutoApprovalData | [optional] | |
| custom_fields | TemplateSlackCustomFields | [optional] | |
| } |
Example
from sailpoint.v2024.models.template_slack import TemplateSlack
template_slack = TemplateSlack(
key='',
text='',
blocks='',
attachments='',
notification_type='',
approval_id='',
request_id='',
requested_by_id='',
is_subscription=True,
auto_approval_data=sailpoint.v2024.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.v2024.models.template_slack_custom_fields.TemplateSlack_customFields(
request_type = '',
contains_deny = '',
campaign_id = '',
campaign_status = '', )
)