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

1.2 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-approval-items ApprovalItems ApprovalItems ApprovalItems pythonsdk
python
Python
sdk
ApprovalItems
BetaApprovalItems
/tools/sdk/python/beta/models/approval-items
SDK
Software Development Kit
ApprovalItems
BetaApprovalItems

ApprovalItems

Properties

Name Type Description Notes
id str The approval item's ID [optional]
account str The account referenced by the approval item [optional]
application str The name of the application/source [optional]
name str The attribute's name [optional]
operation str The attribute's operation [optional]
value str The attribute's value [optional]
state WorkItemState [optional]
}

Example

from sailpoint.beta.models.approval_items import ApprovalItems

approval_items = ApprovalItems(
id='2c9180835d2e5168015d32f890ca1581',
account='john.smith',
application='Active Directory',
name='emailAddress',
operation='update',
value='a@b.com',
state='Pending'
)

[Back to top]