starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,41 @@
---
id: requestability-for-role
title: RequestabilityForRole
pagination_label: RequestabilityForRole
sidebar_label: RequestabilityForRole
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RequestabilityForRole', 'RequestabilityForRole']
slug: /tools/sdk/python/v3/models/requestability-for-role
tags: ['SDK', 'Software Development Kit', 'RequestabilityForRole', 'RequestabilityForRole']
---
# RequestabilityForRole
## 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** | [**[]ApprovalSchemeForRole**](approval-scheme-for-role) | List describing the steps in approving the request | [optional]
}
## Example
```python
from sailpoint.v3.models.requestability_for_role import RequestabilityForRole
requestability_for_role = RequestabilityForRole(
comments_required=True,
denial_comments_required=True,
approval_schemes=[
sailpoint.v3.models.approval_scheme_for_role.ApprovalSchemeForRole(
approver_type = 'GOVERNANCE_GROUP',
approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
]
)
```
[[Back to top]](#)