Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 2.5 KB

LINGUISTEDIT.md

File metadata and controls

38 lines (31 loc) · 2.5 KB

LINGUISTEDIT

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.linguistedit import LINGUISTEDIT

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

# convert the object into a dict
linguistedit_dict = linguistedit_instance.to_dict()
# create an instance of LINGUISTEDIT from a dict
linguistedit_from_dict = LINGUISTEDIT.from_dict(linguistedit_dict)

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