| Name | Type | Description | Notes |
|---|---|---|---|
| key | str |
from aerostack.models.cache_get_request import CacheGetRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CacheGetRequest from a JSON string
cache_get_request_instance = CacheGetRequest.from_json(json)
# print the JSON string representation of the object
print CacheGetRequest.to_json()
# convert the object into a dict
cache_get_request_dict = cache_get_request_instance.to_dict()
# create an instance of CacheGetRequest from a dict
cache_get_request_form_dict = cache_get_request.from_dict(cache_get_request_dict)