Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.23 KB

WorkflowStepReference.md

File metadata and controls

31 lines (24 loc) · 1.23 KB

WorkflowStepReference

Properties

Name Type Description Notes
name str [optional]
id str [optional]
uid str [optional]
order int [optional]
lqa_enabled bool [optional]

Example

from phrasetms_client.models.workflow_step_reference import WorkflowStepReference

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

# convert the object into a dict
workflow_step_reference_dict = workflow_step_reference_instance.to_dict()
# create an instance of WorkflowStepReference from a dict
workflow_step_reference_from_dict = WorkflowStepReference.from_dict(workflow_step_reference_dict)

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