add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
---
id: v2025-requested-item-status-requester-comment
title: RequestedItemStatusRequesterComment
pagination_label: RequestedItemStatusRequesterComment
sidebar_label: RequestedItemStatusRequesterComment
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RequestedItemStatusRequesterComment', 'V2025RequestedItemStatusRequesterComment']
slug: /tools/sdk/python/v2025/models/requested-item-status-requester-comment
tags: ['SDK', 'Software Development Kit', 'RequestedItemStatusRequesterComment', 'V2025RequestedItemStatusRequesterComment']
---
# RequestedItemStatusRequesterComment
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**comment** | **str** | Comment content. | [optional]
**created** | **datetime** | Date and time comment was created. | [optional]
**author** | [**CommentDtoAuthor**](comment-dto-author) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.requested_item_status_requester_comment import RequestedItemStatusRequesterComment
requested_item_status_requester_comment = RequestedItemStatusRequesterComment(
comment='This is a comment.',
created='2017-07-11T18:45:37.098Z',
author=sailpoint.v2025.models.comment_dto_author.CommentDto_author(
type = 'IDENTITY',
id = '2c9180847e25f377017e2ae8cae4650b',
name = 'john.doe', )
)
```
[[Back to top]](#)