Create a new case.
| Name | Type | Description | Notes |
|---|---|---|---|
| case | Workflowv3CaseEdit | [optional] |
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)