Name |
Type |
Description |
Notes |
message |
str |
Result message |
[optional] |
from formkiq_client.models.update_workflow_response import UpdateWorkflowResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateWorkflowResponse from a JSON string
update_workflow_response_instance = UpdateWorkflowResponse.from_json(json)
# print the JSON string representation of the object
print(UpdateWorkflowResponse.to_json())
# convert the object into a dict
update_workflow_response_dict = update_workflow_response_instance.to_dict()
# create an instance of UpdateWorkflowResponse from a dict
update_workflow_response_from_dict = UpdateWorkflowResponse.from_dict(update_workflow_response_dict)
[Back to Model list] [Back to API list] [Back to README]