31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
# ResponseBodyAuthResponseDto
|
|
|
|
|
|
## Properties
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**data** | **object** | | [optional]
|
|
**message** | **str** | | [optional]
|
|
**success** | **bool** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from board_mate.auth.models.response_body_auth_response_dto import ResponseBodyAuthResponseDto
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of ResponseBodyAuthResponseDto from a JSON string
|
|
response_body_auth_response_dto_instance = ResponseBodyAuthResponseDto.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print ResponseBodyAuthResponseDto.to_json()
|
|
|
|
# convert the object into a dict
|
|
response_body_auth_response_dto_dict = response_body_auth_response_dto_instance.to_dict()
|
|
# create an instance of ResponseBodyAuthResponseDto from a dict
|
|
response_body_auth_response_dto_form_dict = response_body_auth_response_dto.from_dict(response_body_auth_response_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)
|
|
|
|
|