Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/Comment.md
2025-04-01 09:23:12 -04:00

1.0 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-comment Comment Comment Comment pythonsdk
python
Python
sdk
Comment
V2025Comment
/tools/sdk/python/v2025/models/comment
SDK
Software Development Kit
Comment
V2025Comment

Comment

Properties

Name Type Description Notes
commenter_id str Id of the identity making the comment [optional]
commenter_name str Human-readable display name of the identity making the comment [optional]
body str Content of the comment [optional]
var_date datetime Date and time comment was made [optional]
}

Example

from sailpoint.v2025.models.comment import Comment

comment = Comment(
commenter_id='2c918084660f45d6016617daa9210584',
commenter_name='Adam Kennedy',
body='Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.',
var_date='2017-07-11T18:45:37.098Z'
)

[Back to top]