mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
861 B
861 B
ApiError
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| errors | List[str] | [optional] |
Example
from test_templates_api.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_form_dict = api_error.from_dict(api_error_dict)