mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
39
docs/tools/sdk/python/Reference/V3/Models/Comment.md
Normal file
39
docs/tools/sdk/python/Reference/V3/Models/Comment.md
Normal file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: comment
|
||||
title: Comment
|
||||
pagination_label: Comment
|
||||
sidebar_label: Comment
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'Comment', 'Comment']
|
||||
slug: /tools/sdk/python/v3/models/comment
|
||||
tags: ['SDK', 'Software Development Kit', 'Comment', 'Comment']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.v3.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]](#)
|
||||
|
||||
Reference in New Issue
Block a user