Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.89 KB

ItemListEntry.md

File metadata and controls

47 lines (38 loc) · 1.89 KB

ItemListEntry

Properties

Name Type Description Notes
ankama_id int [optional]
name str [optional]
type ItemsListEntryTypedType [optional]
level int [optional]
image_urls ImageUrls [optional]
recipe List[RecipeEntry] [optional]
description str [optional]
conditions List[ConditionEntry] [optional]
condition_tree ConditionTreeNode [optional]
effects List[EffectsEntry] [optional]
is_weapon bool [optional]
pods int [optional]
parent_set ItemListEntryParentSet [optional]
critical_hit_probability int [optional]
critical_hit_bonus int [optional]
is_two_handed bool [optional]
max_cast_per_turn int [optional]
ap_cost int [optional]
range ItemListEntryRange [optional]

Example

from dofusdude.models.item_list_entry import ItemListEntry

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

# convert the object into a dict
item_list_entry_dict = item_list_entry_instance.to_dict()
# create an instance of ItemListEntry from a dict
item_list_entry_from_dict = ItemListEntry.from_dict(item_list_entry_dict)

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