Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.1 KB

ItemListResponse.md

File metadata and controls

32 lines (24 loc) · 1.1 KB

ItemListResponse

Properties

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

Example

from sparkfly_client.models.item_list_response import ItemListResponse

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

# convert the object into a dict
item_list_response_dict = item_list_response_instance.to_dict()
# create an instance of ItemListResponse from a dict
item_list_response_form_dict = item_list_response.from_dict(item_list_response_dict)

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