Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 916 Bytes

Comment.md

File metadata and controls

33 lines (24 loc) · 916 Bytes

Comment

Properties

Name Type Description Notes
id str
task_id str
content str
creator User
created_at datetime

Example

from usemotion_api_client.models.comment import Comment

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

# convert the object into a dict
comment_dict = comment_instance.to_dict()
# create an instance of Comment from a dict
comment_form_dict = comment.from_dict(comment_dict)

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