Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1016 Bytes

GameSearch.md

File metadata and controls

32 lines (23 loc) · 1016 Bytes

GameSearch

Properties

Name Type Description Notes
ankama_id int [optional]
name str [optional]
type GameSearchType [optional]
item_fields GameSearchItem [optional]

Example

from dofusdude.models.game_search import GameSearch

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

# convert the object into a dict
game_search_dict = game_search_instance.to_dict()
# create an instance of GameSearch from a dict
game_search_from_dict = GameSearch.from_dict(game_search_dict)

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