Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.8 KB

WorkflowStepSettingsDto.md

File metadata and controls

30 lines (23 loc) · 1.8 KB

WorkflowStepSettingsDto

Properties

Name Type Description Notes
workflow_step WorkflowStepReference [optional]
assigned_to List[ProjectTemplateWorkflowSettingsAssignedToDto] [optional]
notify_provider ProjectTemplateNotifyProviderDto [optional]
lqa_profile UidReference [optional]

Example

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)

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