Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.15 KB

ListItemGeneral.md

File metadata and controls

34 lines (25 loc) · 1.15 KB

ListItemGeneral

Properties

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]

Example

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)

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