Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1001 Bytes

EmptyTranslationWarningDto.md

File metadata and controls

26 lines (19 loc) · 1001 Bytes

EmptyTranslationWarningDto

Properties

Name Type Description Notes

Example

from phrasetms_client.models.empty_translation_warning_dto import EmptyTranslationWarningDto

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

# convert the object into a dict
empty_translation_warning_dto_dict = empty_translation_warning_dto_instance.to_dict()
# create an instance of EmptyTranslationWarningDto from a dict
empty_translation_warning_dto_from_dict = EmptyTranslationWarningDto.from_dict(empty_translation_warning_dto_dict)

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