# AuthRequestDto ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **username** | **str** | | [optional] **key** | **str** | | [optional] ## Example ```python 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) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)