mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
---
|
||||
id: v2024-non-employee-approval-item-base
|
||||
title: NonEmployeeApprovalItemBase
|
||||
pagination_label: NonEmployeeApprovalItemBase
|
||||
sidebar_label: NonEmployeeApprovalItemBase
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'NonEmployeeApprovalItemBase', 'V2024NonEmployeeApprovalItemBase']
|
||||
slug: /tools/sdk/python/v2024/models/non-employee-approval-item-base
|
||||
tags: ['SDK', 'Software Development Kit', 'NonEmployeeApprovalItemBase', 'V2024NonEmployeeApprovalItemBase']
|
||||
---
|
||||
|
||||
# NonEmployeeApprovalItemBase
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**id** | **str** | Non-Employee approval item id | [optional]
|
||||
**approver** | [**NonEmployeeIdentityReferenceWithId**](non-employee-identity-reference-with-id) | | [optional]
|
||||
**account_name** | **str** | Requested identity account name | [optional]
|
||||
**approval_status** | [**ApprovalStatus**](approval-status) | | [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
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.non_employee_approval_item_base import NonEmployeeApprovalItemBase
|
||||
|
||||
non_employee_approval_item_base = NonEmployeeApprovalItemBase(
|
||||
id='2c1e388b-1e55-4b0a-ab5c-897f1204159c',
|
||||
approver=sailpoint.v2024.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'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user