Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 929 Bytes

File metadata and controls

29 lines (20 loc) · 929 Bytes

NotFoundResponse

Properties

Name Type Description Notes
message str Error message

Example

from watchtowr_api_sdk.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)

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