Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

UpdateWorkflowRequest.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

UpdateWorkflowRequest

Properties

Name Type Description Notes
name str Workflow name [optional]
description str Workflow description [optional]
status WorkflowStatus [optional]

Example

from formkiq_client.models.update_workflow_request import UpdateWorkflowRequest

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

# convert the object into a dict
update_workflow_request_dict = update_workflow_request_instance.to_dict()
# create an instance of UpdateWorkflowRequest from a dict
update_workflow_request_from_dict = UpdateWorkflowRequest.from_dict(update_workflow_request_dict)

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