Name | Type | Description | Notes |
---|---|---|---|
page | int | [optional] | |
per_page | int | [optional] | |
total_entries | int | [optional] | |
total_pages | int | [optional] | |
item_sets | List[ItemSetResponse] | [optional] |
from sparkfly_client.models.merchant_item_set_list import MerchantItemSetList
# TODO update the JSON string below
json = "{}"
# create an instance of MerchantItemSetList from a JSON string
merchant_item_set_list_instance = MerchantItemSetList.from_json(json)
# print the JSON string representation of the object
print MerchantItemSetList.to_json()
# convert the object into a dict
merchant_item_set_list_dict = merchant_item_set_list_instance.to_dict()
# create an instance of MerchantItemSetList from a dict
merchant_item_set_list_form_dict = merchant_item_set_list.from_dict(merchant_item_set_list_dict)