Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.6 KB

WorkflowStepConfiguration.md

File metadata and controls

30 lines (23 loc) · 1.6 KB

WorkflowStepConfiguration

Properties

Name Type Description Notes
id str [optional]
assignments List[ProvidersPerLanguage]
due datetime Use ISO 8601 date format. [optional]
notify_provider NotifyProviderDto [optional]

Example

from phrasetms_client.models.workflow_step_configuration import WorkflowStepConfiguration

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

# convert the object into a dict
workflow_step_configuration_dict = workflow_step_configuration_instance.to_dict()
# create an instance of WorkflowStepConfiguration from a dict
workflow_step_configuration_from_dict = WorkflowStepConfiguration.from_dict(workflow_step_configuration_dict)

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