Name | Type | Description | Notes |
---|---|---|---|
workflow_step | WorkflowStepReference | [optional] | |
assigned_to | List[ProjectTemplateWorkflowSettingsAssignedToDto] | [optional] | |
notify_provider | ProjectTemplateNotifyProviderDto | [optional] | |
lqa_profile | UidReference | [optional] |
from phrasetms_client.models.workflow_step_settings_dto import WorkflowStepSettingsDto
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowStepSettingsDto from a JSON string
workflow_step_settings_dto_instance = WorkflowStepSettingsDto.from_json(json)
# print the JSON string representation of the object
print WorkflowStepSettingsDto.to_json()
# convert the object into a dict
workflow_step_settings_dto_dict = workflow_step_settings_dto_instance.to_dict()
# create an instance of WorkflowStepSettingsDto from a dict
workflow_step_settings_dto_from_dict = WorkflowStepSettingsDto.from_dict(workflow_step_settings_dto_dict)