Name | Type | Description | Notes |
---|---|---|---|
edit_all_terms_in_tb | bool | [optional] | |
edit_translations_in_tm | bool | [optional] | |
enable_mt | bool | [optional] | |
may_reject_jobs | bool | [optional] | |
source_locales | List[str] | [optional] | |
target_locales | List[str] | [optional] | |
workflow_steps | List[WorkflowStepReferenceV3] | [optional] | |
clients | List[ClientReference] | [optional] | |
domains | List[DomainReference] | [optional] | |
sub_domains | List[SubDomainReference] | [optional] | |
net_rate_scheme | DiscountSchemeReference | [optional] | |
translation_price_list | PriceListReference | [optional] |
from phrasetms_client.models.linguistresponse import LINGUISTRESPONSE
# TODO update the JSON string below
json = "{}"
# create an instance of LINGUISTRESPONSE from a JSON string
linguistresponse_instance = LINGUISTRESPONSE.from_json(json)
# print the JSON string representation of the object
print LINGUISTRESPONSE.to_json()
# convert the object into a dict
linguistresponse_dict = linguistresponse_instance.to_dict()
# create an instance of LINGUISTRESPONSE from a dict
linguistresponse_from_dict = LINGUISTRESPONSE.from_dict(linguistresponse_dict)