Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 893 Bytes

GameSearchType.md

File metadata and controls

29 lines (20 loc) · 893 Bytes

GameSearchType

Properties

Name Type Description Notes
name_id str [optional]

Example

from dofusdude.models.game_search_type import GameSearchType

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

# convert the object into a dict
game_search_type_dict = game_search_type_instance.to_dict()
# create an instance of GameSearchType from a dict
game_search_type_from_dict = GameSearchType.from_dict(game_search_type_dict)

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