Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.58 KB

TranslationResourcesDto.md

File metadata and controls

29 lines (22 loc) · 1.58 KB

TranslationResourcesDto

Properties

Name Type Description Notes
machine_translate_settings MachineTranslateSettingsReference [optional]
translation_memories List[ProjectTranslationMemoryReference] [optional]
term_bases List[ProjectTermBaseReference] [optional]

Example

from phrasetms_client.models.translation_resources_dto import TranslationResourcesDto

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

# convert the object into a dict
translation_resources_dto_dict = translation_resources_dto_instance.to_dict()
# create an instance of TranslationResourcesDto from a dict
translation_resources_dto_from_dict = TranslationResourcesDto.from_dict(translation_resources_dto_dict)

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