Name | Type | Description | Notes |
---|---|---|---|
name | str | ||
source_lang | str | [optional] | |
target_langs | List[str] | [optional] | |
workflow_steps | List[IdReference] | [optional] | |
date_due | datetime | [optional] | |
note | str | [optional] | |
client | IdReference | [optional] | |
business_unit | IdReference | [optional] | |
domain | IdReference | [optional] | |
sub_domain | IdReference | [optional] | |
cost_center | IdReference | [optional] |
from phrasetms_client.models.create_project_from_template_v2_dto import CreateProjectFromTemplateV2Dto
# TODO update the JSON string below
json = "{}"
# create an instance of CreateProjectFromTemplateV2Dto from a JSON string
create_project_from_template_v2_dto_instance = CreateProjectFromTemplateV2Dto.from_json(json)
# print the JSON string representation of the object
print CreateProjectFromTemplateV2Dto.to_json()
# convert the object into a dict
create_project_from_template_v2_dto_dict = create_project_from_template_v2_dto_instance.to_dict()
# create an instance of CreateProjectFromTemplateV2Dto from a dict
create_project_from_template_v2_dto_from_dict = CreateProjectFromTemplateV2Dto.from_dict(create_project_from_template_v2_dto_dict)