mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
889 B
889 B
NotFoundError
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] |
Example
from test_templates_api.models.not_found_error import NotFoundError
# TODO update the JSON string below
json = "{}"
# create an instance of NotFoundError from a JSON string
not_found_error_instance = NotFoundError.from_json(json)
# print the JSON string representation of the object
print NotFoundError.to_json()
# convert the object into a dict
not_found_error_dict = not_found_error_instance.to_dict()
# create an instance of NotFoundError from a dict
not_found_error_form_dict = not_found_error.from_dict(not_found_error_dict)