mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.4 KiB
1.4 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-requested-item-status-requester-comment | RequestedItemStatusRequesterComment | RequestedItemStatusRequesterComment | RequestedItemStatusRequesterComment | pythonsdk |
|
/tools/sdk/python/v2025/models/requested-item-status-requester-comment |
|
RequestedItemStatusRequesterComment
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| comment | str | Comment content. | [optional] |
| created | datetime | Date and time comment was created. | [optional] |
| author | CommentDtoAuthor | [optional] | |
| } |
Example
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', )
)