UnresolvedCommentWarningDto
| Name |
Type |
Description |
Notes |
from phrasetms_client.models.unresolved_comment_warning_dto import UnresolvedCommentWarningDto
# TODO update the JSON string below
json = "{}"
# create an instance of UnresolvedCommentWarningDto from a JSON string
unresolved_comment_warning_dto_instance = UnresolvedCommentWarningDto.from_json(json)
# print the JSON string representation of the object
print UnresolvedCommentWarningDto.to_json()
# convert the object into a dict
unresolved_comment_warning_dto_dict = unresolved_comment_warning_dto_instance.to_dict()
# create an instance of UnresolvedCommentWarningDto from a dict
unresolved_comment_warning_dto_from_dict = UnresolvedCommentWarningDto.from_dict(unresolved_comment_warning_dto_dict)
[Back to Model list] [Back to API list] [Back to README]