Name | Type | Description | Notes |
---|---|---|---|
ankama_id | int | [optional] | |
name | str | [optional] | |
type | TranslatedId | [optional] | |
item_subtype | ItemSubtype | [optional] | |
level | int | [optional] | |
image_urls | Images | [optional] |
from dofusdude.models.list_item_general import ListItemGeneral
# TODO update the JSON string below
json = "{}"
# create an instance of ListItemGeneral from a JSON string
list_item_general_instance = ListItemGeneral.from_json(json)
# print the JSON string representation of the object
print(ListItemGeneral.to_json())
# convert the object into a dict
list_item_general_dict = list_item_general_instance.to_dict()
# create an instance of ListItemGeneral from a dict
list_item_general_from_dict = ListItemGeneral.from_dict(list_item_general_dict)