NotFoundResponse
Properties
| Name | Type | Description | Notes | 
| error | str | Error type, always \"Not Found\" for this error |  | 
| message | str | Detailed message explaining why the resource was not found |  | 
Example
from rxinferclient.models.not_found_response import NotFoundResponse
# TODO update the JSON string below
json = "{}"
# create an instance of NotFoundResponse from a JSON string
not_found_response_instance = NotFoundResponse.from_json(json)
# print the JSON string representation of the object
print(NotFoundResponse.to_json())
# convert the object into a dict
not_found_response_dict = not_found_response_instance.to_dict()
# create an instance of NotFoundResponse from a dict
not_found_response_from_dict = NotFoundResponse.from_dict(not_found_response_dict)