mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.3 KiB
1.3 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-approval-attributes-request | ApprovalAttributesRequest | ApprovalAttributesRequest | ApprovalAttributesRequest | pythonsdk |
|
/tools/sdk/python/v2025/models/approval-attributes-request |
|
ApprovalAttributesRequest
Approval Attributes Request
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| additional_attributes | map[string]str | Additional attributes as key-value pairs that are not part of the standard schema but can be included for custom data. | [optional] |
| comment | str | Comment associated with the request. | [optional] |
| remove_attribute_keys | []str | List of attribute keys to be removed. | [optional] |
| } |
Example
from sailpoint.v2025.models.approval_attributes_request import ApprovalAttributesRequest
approval_attributes_request = ApprovalAttributesRequest(
additional_attributes={additionalProp1=string, additionalProp2=string, additionalProp3=string},
comment='comment',
remove_attribute_keys=[string]
)