Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.17 KB

File metadata and controls

27 lines (20 loc) · 1.17 KB

AbsoluteTranslationLengthWarningDto

Properties

Name Type Description Notes
limit str [optional]

Example

from phrasetms_client.models.absolute_translation_length_warning_dto import AbsoluteTranslationLengthWarningDto

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

# convert the object into a dict
absolute_translation_length_warning_dto_dict = absolute_translation_length_warning_dto_instance.to_dict()
# create an instance of AbsoluteTranslationLengthWarningDto from a dict
absolute_translation_length_warning_dto_from_dict = AbsoluteTranslationLengthWarningDto.from_dict(absolute_translation_length_warning_dto_dict)

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