| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | [optional] | |
| details | List[ProtobufAny] | [optional] | |
| error | str | [optional] | |
| message | str | [optional] |
from ibm_gdsc_sdk_saas.models.runtime_error import RuntimeError
# TODO update the JSON string below
json = "{}"
# create an instance of RuntimeError from a JSON string
runtime_error_instance = RuntimeError.from_json(json)
# print the JSON string representation of the object
print(RuntimeError.to_json())
# convert the object into a dict
runtime_error_dict = runtime_error_instance.to_dict()
# create an instance of RuntimeError from a dict
runtime_error_from_dict = RuntimeError.from_dict(runtime_error_dict)