Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.17 KB

RelativeTranslationLengthWarningDto.md

File metadata and controls

27 lines (20 loc) · 1.17 KB

RelativeTranslationLengthWarningDto

Properties

Name Type Description Notes
limit str [optional]

Example

from phrasetms_client.models.relative_translation_length_warning_dto import RelativeTranslationLengthWarningDto

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

# convert the object into a dict
relative_translation_length_warning_dto_dict = relative_translation_length_warning_dto_instance.to_dict()
# create an instance of RelativeTranslationLengthWarningDto from a dict
relative_translation_length_warning_dto_from_dict = RelativeTranslationLengthWarningDto.from_dict(relative_translation_length_warning_dto_dict)

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