SetCommentTextParams
| Name |
Type |
Description |
Notes |
| comment |
str |
|
|
from client.models.set_comment_text_params import SetCommentTextParams
# TODO update the JSON string below
json = "{}"
# create an instance of SetCommentTextParams from a JSON string
set_comment_text_params_instance = SetCommentTextParams.from_json(json)
# print the JSON string representation of the object
print(SetCommentTextParams.to_json())
# convert the object into a dict
set_comment_text_params_dict = set_comment_text_params_instance.to_dict()
# create an instance of SetCommentTextParams from a dict
set_comment_text_params_from_dict = SetCommentTextParams.from_dict(set_comment_text_params_dict)
[Back to Model list] [Back to API list] [Back to README]