Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

WorkflowCancelResponse

Response for generic workflow cancellation.

Properties

Name Type Description Notes
workflow_id str
message str

Example

from ksapi.models.workflow_cancel_response import WorkflowCancelResponse

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

# convert the object into a dict
workflow_cancel_response_dict = workflow_cancel_response_instance.to_dict()
# create an instance of WorkflowCancelResponse from a dict
workflow_cancel_response_from_dict = WorkflowCancelResponse.from_dict(workflow_cancel_response_dict)

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