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] |
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)