Update python SDK docs: 16633304233

This commit is contained in:
developer-relations-sp
2025-07-30 20:42:39 +00:00
parent 5d76be1d9d
commit cfdbd8d149
37 changed files with 2482 additions and 594 deletions

View File

@@ -0,0 +1,33 @@
---
id: v2025-approval-comments-request
title: ApprovalCommentsRequest
pagination_label: ApprovalCommentsRequest
sidebar_label: ApprovalCommentsRequest
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ApprovalCommentsRequest', 'V2025ApprovalCommentsRequest']
slug: /tools/sdk/python/v2025/models/approval-comments-request
tags: ['SDK', 'Software Development Kit', 'ApprovalCommentsRequest', 'V2025ApprovalCommentsRequest']
---
# ApprovalCommentsRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**comment** | **str** | Comment associated with the request. | [optional]
}
## Example
```python
from sailpoint.v2025.models.approval_comments_request import ApprovalCommentsRequest
approval_comments_request = ApprovalCommentsRequest(
comment='Approval comment.'
)
```
[[Back to top]](#)