Name | Type | Description | Notes |
---|---|---|---|
type | GameSearchType | [optional] | |
level | int | [optional] | |
image_urls | Images | [optional] |
from dofusdude.models.game_search_item import GameSearchItem
# TODO update the JSON string below
json = "{}"
# create an instance of GameSearchItem from a JSON string
game_search_item_instance = GameSearchItem.from_json(json)
# print the JSON string representation of the object
print(GameSearchItem.to_json())
# convert the object into a dict
game_search_item_dict = game_search_item_instance.to_dict()
# create an instance of GameSearchItem from a dict
game_search_item_from_dict = GameSearchItem.from_dict(game_search_item_dict)