What genuine fuck just happened ?

This commit is contained in:
2026-01-02 16:56:22 +01:00
parent 606f0e0a2a
commit 04f21e8e32
41 changed files with 3361 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# MessagePostRequestDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**content** | **str** | | [optional]
**client_id** | **str** | | [optional]
**time_stamp** | **int** | | [optional]
## Example
```python
from board_mate.message.models.message_post_request_dto import MessagePostRequestDto
# TODO update the JSON string below
json = "{}"
# create an instance of MessagePostRequestDto from a JSON string
message_post_request_dto_instance = MessagePostRequestDto.from_json(json)
# print the JSON string representation of the object
print MessagePostRequestDto.to_json()
# convert the object into a dict
message_post_request_dto_dict = message_post_request_dto_instance.to_dict()
# create an instance of MessagePostRequestDto from a dict
message_post_request_dto_form_dict = message_post_request_dto.from_dict(message_post_request_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)