Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1013 Bytes

File metadata and controls

32 lines (23 loc) · 1013 Bytes

RuntimeError

Properties

Name Type Description Notes
code int [optional]
details List[ProtobufAny] [optional]
error str [optional]
message str [optional]

Example

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)

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