Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.45 KB

Error.md

File metadata and controls

34 lines (25 loc) · 1.45 KB

Error

RFC7807 compliant response.

Properties

Name Type Description Notes
type str A URI reference [RFC3986] that identifies the problem type. This specification encourages that, when dereferenced, it provide human-readable documentation for the problem type.
title str A short, human-readable summary of the problem type.
status float The HTTP status code generated by the API server for this occurrence of the problem.
detail str A human-readable explanation specific to this occurrence of the problem. [optional]
instance str A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. [optional]

Example

from titanium_airflow_client.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_from_dict = Error.from_dict(error_dict)

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