Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/ApprovalDescription.md
2025-02-20 12:59:19 -05:00

1.0 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-approval-description ApprovalDescription ApprovalDescription ApprovalDescription pythonsdk
python
Python
sdk
ApprovalDescription
V2024ApprovalDescription
/tools/sdk/python/v2024/models/approval-description
SDK
Software Development Kit
ApprovalDescription
V2024ApprovalDescription

ApprovalDescription

The description of what the approval is asking for

Properties

Name Type Description Notes
value str The description of what the approval is asking for [optional]
locale str What locale the description of the approval is using [optional]
}

Example

from sailpoint.v2024.models.approval_description import ApprovalDescription

approval_description = ApprovalDescription(
value='This access allows viewing and editing of workflow resource',
locale='en_US'
)

[Back to top]