Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 999 Bytes

File metadata and controls

30 lines (21 loc) · 999 Bytes

CacheGet200Response

Properties

Name Type Description Notes
value object [optional]
exists bool [optional]

Example

from aerostack.models.cache_get200_response import CacheGet200Response

# TODO update the JSON string below
json = "{}"
# create an instance of CacheGet200Response from a JSON string
cache_get200_response_instance = CacheGet200Response.from_json(json)
# print the JSON string representation of the object
print CacheGet200Response.to_json()

# convert the object into a dict
cache_get200_response_dict = cache_get200_response_instance.to_dict()
# create an instance of CacheGet200Response from a dict
cache_get200_response_form_dict = cache_get200_response.from_dict(cache_get200_response_dict)

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