| Name |
Type |
Description |
Notes |
| success |
bool |
|
[optional] |
from aerostack.models.cache_set200_response import CacheSet200Response
# TODO update the JSON string below
json = "{}"
# create an instance of CacheSet200Response from a JSON string
cache_set200_response_instance = CacheSet200Response.from_json(json)
# print the JSON string representation of the object
print CacheSet200Response.to_json()
# convert the object into a dict
cache_set200_response_dict = cache_set200_response_instance.to_dict()
# create an instance of CacheSet200Response from a dict
cache_set200_response_form_dict = cache_set200_response.from_dict(cache_set200_response_dict)
[Back to Model list] [Back to API list] [Back to README]