Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 769 Bytes

Item.md

File metadata and controls

30 lines (21 loc) · 769 Bytes

Item

Properties

Name Type Description Notes
id int
name str

Example

from template_web_client.models.item import Item

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

# convert the object into a dict
item_dict = item_instance.to_dict()
# create an instance of Item from a dict
item_form_dict = item.from_dict(item_dict)

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