| Name |
Type |
Description |
Notes |
| code |
str |
|
[optional] |
| message |
str |
|
[optional] |
| meta |
object |
|
[optional] |
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]