Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

GetWorkflowResponse.md

File metadata and controls

33 lines (24 loc) · 1.23 KB

GetWorkflowResponse

Properties

Name Type Description Notes
name str Workflow name [optional]
description str Workflow description [optional]
in_use bool Whether the Workflow is in use [optional]
status WorkflowStatus [optional]
steps List[WorkflowStep] Workflow steps [optional]

Example

from formkiq_client.models.get_workflow_response import GetWorkflowResponse

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

# convert the object into a dict
get_workflow_response_dict = get_workflow_response_instance.to_dict()
# create an instance of GetWorkflowResponse from a dict
get_workflow_response_from_dict = GetWorkflowResponse.from_dict(get_workflow_response_dict)

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