What genuine fuck just happened ?
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# ResponseBodyListMessageDto
|
||||
|
||||
|
||||
## Properties
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**data** | [**List[MessageDto]**](MessageDto.md) | | [optional]
|
||||
**message** | **str** | | [optional]
|
||||
**success** | **bool** | | [optional]
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from board_mate.message.models.response_body_list_message_dto import ResponseBodyListMessageDto
|
||||
|
||||
# TODO update the JSON string below
|
||||
json = "{}"
|
||||
# create an instance of ResponseBodyListMessageDto from a JSON string
|
||||
response_body_list_message_dto_instance = ResponseBodyListMessageDto.from_json(json)
|
||||
# print the JSON string representation of the object
|
||||
print ResponseBodyListMessageDto.to_json()
|
||||
|
||||
# convert the object into a dict
|
||||
response_body_list_message_dto_dict = response_body_list_message_dto_instance.to_dict()
|
||||
# create an instance of ResponseBodyListMessageDto from a dict
|
||||
response_body_list_message_dto_form_dict = response_body_list_message_dto.from_dict(response_body_list_message_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