Skip to main content

TemplateslackAutoApprovalData

Properties

NameTypeDescriptionNotes
is_auto_approvedstrWhether the request was auto-approved[optional]
item_idstrThe item ID[optional]
item_typestrThe item type[optional]
auto_approval_message_jsonstrJSON message for auto-approval[optional]
auto_approval_titlestrTitle for auto-approval[optional]
}

Example

from sailpoint.notifications.models.templateslack_auto_approval_data import TemplateslackAutoApprovalData

templateslack_auto_approval_data = TemplateslackAutoApprovalData(
is_auto_approved='',
item_id='',
item_type='',
auto_approval_message_json='',
auto_approval_title=''
)

[Back to top]