Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 5.53 KB

File metadata and controls

44 lines (37 loc) · 5.53 KB

ProjectTemplateEditDto

Properties

Name Type Description Notes
name str [optional]
template_name str
source_lang str [optional]
target_langs List[str] [optional]
use_dynamic_title bool [optional]
dynamic_title str [optional]
notify_provider ProjectTemplateNotifyProviderDto [optional]
work_flow_settings List[WorkflowStepSettingsEditDto] [optional]
client IdReference [optional]
cost_center IdReference [optional]
business_unit IdReference [optional]
domain IdReference [optional]
sub_domain IdReference [optional]
vendor IdReference [optional]
import_settings UidReference [optional]
note str [optional]
file_handover bool Default: false [optional]
assigned_to List[ProjectTemplateWorkflowSettingsAssignedToDto] only use for projects without workflows; otherwise specify in the workflowSettings object [optional]

Example

from phrasetms_client.models.project_template_edit_dto import ProjectTemplateEditDto

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

# convert the object into a dict
project_template_edit_dto_dict = project_template_edit_dto_instance.to_dict()
# create an instance of ProjectTemplateEditDto from a dict
project_template_edit_dto_from_dict = ProjectTemplateEditDto.from_dict(project_template_edit_dto_dict)

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