Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1017 Bytes

GameSearchItem.md

File metadata and controls

31 lines (22 loc) · 1017 Bytes

GameSearchItem

Properties

Name Type Description Notes
type GameSearchType [optional]
level int [optional]
image_urls Images [optional]

Example

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)

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