Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

CacheGetRequest

Properties

Name Type Description Notes
key str

Example

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)

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