Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 994 Bytes

EmptyTagContentWarningDto.md

File metadata and controls

26 lines (19 loc) · 994 Bytes

EmptyTagContentWarningDto

Properties

Name Type Description Notes

Example

from phrasetms_client.models.empty_tag_content_warning_dto import EmptyTagContentWarningDto

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

# convert the object into a dict
empty_tag_content_warning_dto_dict = empty_tag_content_warning_dto_instance.to_dict()
# create an instance of EmptyTagContentWarningDto from a dict
empty_tag_content_warning_dto_from_dict = EmptyTagContentWarningDto.from_dict(empty_tag_content_warning_dto_dict)

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