| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Workflow name | |
| description | str | Workflow description | [optional] |
| status | WorkflowStatus | ||
| steps | List[AddWorkflowStep] | Workflow Steps |
from formkiq_client.models.set_workflow_request import SetWorkflowRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetWorkflowRequest from a JSON string
set_workflow_request_instance = SetWorkflowRequest.from_json(json)
# print the JSON string representation of the object
print(SetWorkflowRequest.to_json())
# convert the object into a dict
set_workflow_request_dict = set_workflow_request_instance.to_dict()
# create an instance of SetWorkflowRequest from a dict
set_workflow_request_from_dict = SetWorkflowRequest.from_dict(set_workflow_request_dict)