Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.46 KB

CommentDto.md

File metadata and controls

32 lines (25 loc) · 1.46 KB

CommentDto

Properties

Name Type Description Notes
id str [optional]
text str [optional]
created_by MentionableUserDto [optional]
date_created datetime [optional]
date_modified datetime [optional]
mentions List[MentionDto] [optional]

Example

from phrasetms_client.models.comment_dto import CommentDto

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

# convert the object into a dict
comment_dto_dict = comment_dto_instance.to_dict()
# create an instance of CommentDto from a dict
comment_dto_from_dict = CommentDto.from_dict(comment_dto_dict)

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