ESP32 now publishes on broker
This commit is contained in:
32
rpi/api-resources/board_mate_client/docs/GameDto.md
Normal file
32
rpi/api-resources/board_mate_client/docs/GameDto.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# GameDto
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**white_name** | **str** | | [optional]
|
||||
**black_name** | **str** | | [optional]
|
||||
**time_value** | **int** | | [optional]
|
||||
**increment** | **int** | | [optional]
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from board_mate_client.models.game_dto import GameDto
|
||||
|
||||
# TODO update the JSON string below
|
||||
json = "{}"
|
||||
# create an instance of GameDto from a JSON string
|
||||
game_dto_instance = GameDto.from_json(json)
|
||||
# print the JSON string representation of the object
|
||||
print(GameDto.to_json())
|
||||
|
||||
# convert the object into a dict
|
||||
game_dto_dict = game_dto_instance.to_dict()
|
||||
# create an instance of GameDto from a dict
|
||||
game_dto_from_dict = GameDto.from_dict(game_dto_dict)
|
||||
```
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user