Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 954 Bytes

File metadata and controls

31 lines (22 loc) · 954 Bytes

ApiErrorError

Properties

Name Type Description Notes
code str [optional]
message str [optional]
meta object [optional]

Example

from llmpulse.models.api_error_error import ApiErrorError

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

# convert the object into a dict
api_error_error_dict = api_error_error_instance.to_dict()
# create an instance of ApiErrorError from a dict
api_error_error_from_dict = ApiErrorError.from_dict(api_error_error_dict)

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