Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 3.39 KB

CreateProjectV3Dto.md

File metadata and controls

41 lines (34 loc) · 3.39 KB

CreateProjectV3Dto

Properties

Name Type Description Notes
name str
source_lang str
target_langs List[str]
client IdReference [optional]
business_unit IdReference [optional]
domain IdReference [optional]
sub_domain IdReference [optional]
cost_center IdReference [optional]
purchase_order str [optional]
workflow_steps List[IdReference] [optional]
date_due datetime [optional]
note str [optional]
lqa_profiles List[LqaProfilesForWsV2Dto] Lqa profiles that will be added to workflow steps [optional]
custom_fields List[CustomFieldInstanceApiDto] Custom fields for project [optional]
file_handover bool Default: false [optional]

Example

from phrasetms_client.models.create_project_v3_dto import CreateProjectV3Dto

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

# convert the object into a dict
create_project_v3_dto_dict = create_project_v3_dto_instance.to_dict()
# create an instance of CreateProjectV3Dto from a dict
create_project_v3_dto_from_dict = CreateProjectV3Dto.from_dict(create_project_v3_dto_dict)

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