Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 887 Bytes

Error.md

File metadata and controls

29 lines (21 loc) · 887 Bytes

Error

Properties

Name Type Description Notes
error_code str Error code [optional]
message str Human-readable error message that describes the cause of the error. [optional]

Example

from databricks_jobs.models.error import Error

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

# convert the object into a dict
error_dict = error_instance.to_dict()
# create an instance of Error from a dict
error_form_dict = error.from_dict(error_dict)

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