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:
41
docs/tools/sdk/python/Reference/V3/Models/Requestability.md
Normal file
41
docs/tools/sdk/python/Reference/V3/Models/Requestability.md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: requestability
|
||||
title: Requestability
|
||||
pagination_label: Requestability
|
||||
sidebar_label: Requestability
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'Requestability', 'Requestability']
|
||||
slug: /tools/sdk/python/v3/models/requestability
|
||||
tags: ['SDK', 'Software Development Kit', 'Requestability', 'Requestability']
|
||||
---
|
||||
|
||||
# Requestability
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**comments_required** | **bool** | Whether the requester of the containing object must provide comments justifying the request | [optional] [default to False]
|
||||
**denial_comments_required** | **bool** | Whether an approver must provide comments when denying the request | [optional] [default to False]
|
||||
**approval_schemes** | [**[]AccessProfileApprovalScheme**](access-profile-approval-scheme) | List describing the steps in approving the request | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.requestability import Requestability
|
||||
|
||||
requestability = Requestability(
|
||||
comments_required=True,
|
||||
denial_comments_required=True,
|
||||
approval_schemes=[
|
||||
sailpoint.v3.models.access_profile_approval_scheme.AccessProfileApprovalScheme(
|
||||
approver_type = 'GOVERNANCE_GROUP',
|
||||
approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user