Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

SetWorkflowRequest.md

File metadata and controls

32 lines (23 loc) · 1.12 KB

SetWorkflowRequest

Properties

Name Type Description Notes
name str Workflow name
description str Workflow description [optional]
status WorkflowStatus
steps List[AddWorkflowStep] Workflow Steps

Example

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)

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