Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.62 KB

LINGUIST_.md

File metadata and controls

39 lines (31 loc) · 1.62 KB

LINGUIST

Properties

Name Type Description Notes
edit_all_terms_in_tb bool Edit all terms in TB. Default: false [optional]
edit_translations_in_tm bool Edit translations in TM. Default: false [optional]
enable_mt bool Enable MT. Default: true [optional]
may_reject_jobs bool Reject jobs. Default: false [optional]
source_locales List[str] [optional]
target_locales List[str] [optional]
workflow_steps List[UidReference] [optional]
clients List[UidReference] [optional]
domains List[UidReference] [optional]
sub_domains List[UidReference] [optional]
net_rate_scheme UidReference [optional]
translation_price_list UidReference [optional]

Example

from phrasetms_client.models.linguist_ import LINGUIST

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

# convert the object into a dict
linguist_dict = linguist_instance.to_dict()
# create an instance of LINGUIST from a dict
linguist_from_dict = LINGUIST.from_dict(linguist_dict)

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