Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.3 KB

EditProjectMTSettPerLangDto.md

File metadata and controls

28 lines (21 loc) · 1.3 KB

EditProjectMTSettPerLangDto

Properties

Name Type Description Notes
target_lang str
machine_translate_settings IdReference [optional]

Example

from phrasetms_client.models.edit_project_mt_sett_per_lang_dto import EditProjectMTSettPerLangDto

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

# convert the object into a dict
edit_project_mt_sett_per_lang_dto_dict = edit_project_mt_sett_per_lang_dto_instance.to_dict()
# create an instance of EditProjectMTSettPerLangDto from a dict
edit_project_mt_sett_per_lang_dto_from_dict = EditProjectMTSettPerLangDto.from_dict(edit_project_mt_sett_per_lang_dto_dict)

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