Files
board-mate/api-customer/api-resources/game-components/docs/MoveDto.md
2026-01-01 15:37:20 +01:00

802 B

MoveDto

Properties

Name Type Description Notes
notation str [optional]

Example

from board_mate.game.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_form_dict = move_dto.from_dict(move_dto_dict)

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