Name | Type | Description | Notes |
---|---|---|---|
name_id | str | [optional] |
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)