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

1.8 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-non-employee-approval-item-base NonEmployeeApprovalItemBase NonEmployeeApprovalItemBase NonEmployeeApprovalItemBase pythonsdk
python
Python
sdk
NonEmployeeApprovalItemBase
BetaNonEmployeeApprovalItemBase
/tools/sdk/python/beta/models/non-employee-approval-item-base
SDK
Software Development Kit
NonEmployeeApprovalItemBase
BetaNonEmployeeApprovalItemBase

NonEmployeeApprovalItemBase

Properties

Name Type Description Notes
id str Non-Employee approval item id [optional]
approver IdentityReferenceWithId [optional]
account_name str Requested identity account name [optional]
approval_status ApprovalStatus [optional]
approval_order float Approval order [optional]
comment str comment of approver [optional]
modified datetime When the request was last modified. [optional]
created datetime When the request was created. [optional]
}

Example

from sailpoint.beta.models.non_employee_approval_item_base import NonEmployeeApprovalItemBase

non_employee_approval_item_base = NonEmployeeApprovalItemBase(
id='2c1e388b-1e55-4b0a-ab5c-897f1204159c',
approver=sailpoint.beta.models.identity_reference_with_id.IdentityReferenceWithId(
                    type = 'IDENTITY', 
                    id = '5168015d32f890ca15812c9180835d2e', ),
account_name='test.account',
approval_status='APPROVED',
approval_order=1,
comment='true',
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z'
)

[Back to top]