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.manufacturer_item_set_list import ManufacturerItemSetList
# TODO update the JSON string below
json = "{}"
# create an instance of ManufacturerItemSetList from a JSON string
manufacturer_item_set_list_instance = ManufacturerItemSetList.from_json(json)
# print the JSON string representation of the object
print ManufacturerItemSetList.to_json()
# convert the object into a dict
manufacturer_item_set_list_dict = manufacturer_item_set_list_instance.to_dict()
# create an instance of ManufacturerItemSetList from a dict
manufacturer_item_set_list_form_dict = manufacturer_item_set_list.from_dict(manufacturer_item_set_list_dict)