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) · 796 Bytes

APIError.md

File metadata and controls

29 lines (20 loc) · 796 Bytes

APIError

Properties

Name Type Description Notes
msg str

Example

from livepeer_ai.models.api_error import APIError

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

# convert the object into a dict
api_error_dict = api_error_instance.to_dict()
# create an instance of APIError from a dict
api_error_from_dict = APIError.from_dict(api_error_dict)

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