1.0 KiB
1.0 KiB
ResponseBodyGameDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| data | object | [optional] | |
| message | str | [optional] | |
| success | bool | [optional] |
Example
from board_mate_client.models.response_body_game_dto import ResponseBodyGameDto
# TODO update the JSON string below
json = "{}"
# create an instance of ResponseBodyGameDto from a JSON string
response_body_game_dto_instance = ResponseBodyGameDto.from_json(json)
# print the JSON string representation of the object
print(ResponseBodyGameDto.to_json())
# convert the object into a dict
response_body_game_dto_dict = response_body_game_dto_instance.to_dict()
# create an instance of ResponseBodyGameDto from a dict
response_body_game_dto_from_dict = ResponseBodyGameDto.from_dict(response_body_game_dto_dict)