935 B
935 B
AuthRequestDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| username | str | [optional] | |
| key | str | [optional] |
Example
from board_mate.auth.models.auth_request_dto import AuthRequestDto
# TODO update the JSON string below
json = "{}"
# create an instance of AuthRequestDto from a JSON string
auth_request_dto_instance = AuthRequestDto.from_json(json)
# print the JSON string representation of the object
print AuthRequestDto.to_json()
# convert the object into a dict
auth_request_dto_dict = auth_request_dto_instance.to_dict()
# create an instance of AuthRequestDto from a dict
auth_request_dto_form_dict = auth_request_dto.from_dict(auth_request_dto_dict)