ESP32 now publishes on broker

This commit is contained in:
2025-12-27 17:45:08 +01:00
parent 0ec10f765d
commit 19ad13843c
217 changed files with 5166 additions and 26 deletions

View File

@@ -0,0 +1,29 @@
# MoveDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**notation** | **str** | | [optional]
## Example
```python
from board_mate_client.models.move_dto import MoveDto
# TODO update the JSON string below
json = "{}"
# create an instance of MoveDto from a JSON string
move_dto_instance = MoveDto.from_json(json)
# print the JSON string representation of the object
print(MoveDto.to_json())
# convert the object into a dict
move_dto_dict = move_dto_instance.to_dict()
# create an instance of MoveDto from a dict
move_dto_from_dict = MoveDto.from_dict(move_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)