Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.03 KB

ItemSet.md

File metadata and controls

34 lines (26 loc) · 1.03 KB

ItemSet

Properties

Name Type Description Notes
id int [optional]
name str [optional]
merchant_id int [optional]
manufacturer_id int [optional]
manufacturer_name str [optional]
item_ids List[int] [optional]
set_type int [optional]

Example

from sparkfly_client.models.item_set import ItemSet

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

# convert the object into a dict
item_set_dict = item_set_instance.to_dict()
# create an instance of ItemSet from a dict
item_set_form_dict = item_set.from_dict(item_set_dict)

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