Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.06 KB

InconsistentTagContentWarningDto.md

File metadata and controls

26 lines (19 loc) · 1.06 KB

InconsistentTagContentWarningDto

Properties

Name Type Description Notes

Example

from phrasetms_client.models.inconsistent_tag_content_warning_dto import InconsistentTagContentWarningDto

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

# convert the object into a dict
inconsistent_tag_content_warning_dto_dict = inconsistent_tag_content_warning_dto_instance.to_dict()
# create an instance of InconsistentTagContentWarningDto from a dict
inconsistent_tag_content_warning_dto_from_dict = InconsistentTagContentWarningDto.from_dict(inconsistent_tag_content_warning_dto_dict)

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