Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

SetCommentTextResponse

Properties

Name Type Description Notes
new_comment_text_html str
status APIStatus

Example

from client.models.set_comment_text_response import SetCommentTextResponse

# TODO update the JSON string below
json = "{}"
# create an instance of SetCommentTextResponse from a JSON string
set_comment_text_response_instance = SetCommentTextResponse.from_json(json)
# print the JSON string representation of the object
print(SetCommentTextResponse.to_json())

# convert the object into a dict
set_comment_text_response_dict = set_comment_text_response_instance.to_dict()
# create an instance of SetCommentTextResponse from a dict
set_comment_text_response_from_dict = SetCommentTextResponse.from_dict(set_comment_text_response_dict)

[Back to Model list] [Back to API list] [Back to README]