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] |
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)