mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
2.2 KiB
2.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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| non-employee-approval-item | NonEmployeeApprovalItem | NonEmployeeApprovalItem | NonEmployeeApprovalItem | pythonsdk |
|
/tools/sdk/python/v3/models/non-employee-approval-item |
|
NonEmployeeApprovalItem
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Non-Employee approval item id | [optional] |
| approver | NonEmployeeIdentityReferenceWithId | [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] |
| non_employee_request | NonEmployeeRequestLite | [optional] | |
| } |
Example
from sailpoint.v3.models.non_employee_approval_item import NonEmployeeApprovalItem
non_employee_approval_item = NonEmployeeApprovalItem(
id='2c1e388b-1e55-4b0a-ab5c-897f1204159c',
approver=sailpoint.v3.models.non_employee_identity_reference_with_id.NonEmployeeIdentityReferenceWithId(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e', ),
account_name='test.account',
approval_status='APPROVED',
approval_order=1,
comment='I approve',
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z',
non_employee_request=sailpoint.v3.models.non_employee_request_lite.NonEmployeeRequestLite(
id = 'ac110005-7156-1150-8171-5b292e3e0084',
requester = sailpoint.v3.models.non_employee_identity_reference_with_id.NonEmployeeIdentityReferenceWithId(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e', ), )
)