Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.2 KB

ManufacturerItemSetList.md

File metadata and controls

32 lines (24 loc) · 1.2 KB

ManufacturerItemSetList

Properties

Name Type Description Notes
page int [optional]
per_page int [optional]
total_entries int [optional]
total_pages int [optional]
item_sets List[ItemSetResponse] [optional]

Example

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)

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