Files
2026-01-01 15:37:20 +01:00

32 lines
1.0 KiB
Markdown

# AuthResponseDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**client_id** | **str** | | [optional]
**name** | **str** | | [optional]
**username** | **str** | | [optional]
**auth_token** | **str** | | [optional]
## Example
```python
from board_mate.auth.models.auth_response_dto import AuthResponseDto
# TODO update the JSON string below
json = "{}"
# create an instance of AuthResponseDto from a JSON string
auth_response_dto_instance = AuthResponseDto.from_json(json)
# print the JSON string representation of the object
print AuthResponseDto.to_json()
# convert the object into a dict
auth_response_dto_dict = auth_response_dto_instance.to_dict()
# create an instance of AuthResponseDto from a dict
auth_response_dto_form_dict = auth_response_dto.from_dict(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)