Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

WorkflowStepDecision.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

WorkflowStepDecision

Properties

Name Type Description Notes
type WorkflowStepDecisionType [optional]
next_step_id str Workflow Step to move to [optional]

Example

from formkiq_client.models.workflow_step_decision import WorkflowStepDecision

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

# convert the object into a dict
workflow_step_decision_dict = workflow_step_decision_instance.to_dict()
# create an instance of WorkflowStepDecision from a dict
workflow_step_decision_from_dict = WorkflowStepDecision.from_dict(workflow_step_decision_dict)

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