Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.11 KB

StoreListResponse.md

File metadata and controls

32 lines (24 loc) · 1.11 KB

StoreListResponse

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
stores List[StoreResponse] [optional]

Example

from sparkfly_client.models.store_list_response import StoreListResponse

# TODO update the JSON string below
json = "{}"
# create an instance of StoreListResponse from a JSON string
store_list_response_instance = StoreListResponse.from_json(json)
# print the JSON string representation of the object
print StoreListResponse.to_json()

# convert the object into a dict
store_list_response_dict = store_list_response_instance.to_dict()
# create an instance of StoreListResponse from a dict
store_list_response_form_dict = store_list_response.from_dict(store_list_response_dict)

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