Name | Type | Description | Notes |
---|---|---|---|
store | Store | [optional] | |
errors | Dict[str, str] | [optional] |
from sparkfly_client.models.store_response import StoreResponse
# TODO update the JSON string below
json = "{}"
# create an instance of StoreResponse from a JSON string
store_response_instance = StoreResponse.from_json(json)
# print the JSON string representation of the object
print StoreResponse.to_json()
# convert the object into a dict
store_response_dict = store_response_instance.to_dict()
# create an instance of StoreResponse from a dict
store_response_form_dict = store_response.from_dict(store_response_dict)