1.0 KiB
1.0 KiB
AuthResponseDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| client_id | str | [optional] | |
| name | str | [optional] | |
| username | str | [optional] | |
| auth_token | str | [optional] |
Example
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)