Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.74 KB

HumanTranslateJobsDto.md

File metadata and controls

33 lines (26 loc) · 1.74 KB

HumanTranslateJobsDto

Properties

Name Type Description Notes
jobs List[UidReference]
human_translate_settings IdReference
comment str [optional]
glossary_id str [optional]
use_preferred_translators bool [optional]
level str [optional]
callback_url str [optional]

Example

from phrasetms_client.models.human_translate_jobs_dto import HumanTranslateJobsDto

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

# convert the object into a dict
human_translate_jobs_dto_dict = human_translate_jobs_dto_instance.to_dict()
# create an instance of HumanTranslateJobsDto from a dict
human_translate_jobs_dto_from_dict = HumanTranslateJobsDto.from_dict(human_translate_jobs_dto_dict)

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