Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

Workflowv3CreateCaseRequest

Create a new case.

Properties

Name Type Description Notes
case Workflowv3CaseEdit [optional]

Example

from ibm_gdsc_sdk_saas.models.workflowv3_create_case_request import Workflowv3CreateCaseRequest

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

# convert the object into a dict
workflowv3_create_case_request_dict = workflowv3_create_case_request_instance.to_dict()
# create an instance of Workflowv3CreateCaseRequest from a dict
workflowv3_create_case_request_from_dict = Workflowv3CreateCaseRequest.from_dict(workflowv3_create_case_request_dict)

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