Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 960 Bytes

File metadata and controls

29 lines (20 loc) · 960 Bytes

CacheSet200Response

Properties

Name Type Description Notes
success bool [optional]

Example

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]