Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 832 Bytes

HTTPError.md

File metadata and controls

29 lines (20 loc) · 832 Bytes

HTTPError

Properties

Name Type Description Notes
detail APIError

Example

from livepeer_ai.models.http_error import HTTPError

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

# convert the object into a dict
http_error_dict = http_error_instance.to_dict()
# create an instance of HTTPError from a dict
http_error_from_dict = HTTPError.from_dict(http_error_dict)

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