Files
board-mate/api-customer/api-resources/auth-components/docs/AuthRequestDto.md
2026-01-01 15:37:20 +01:00

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)

[Back to Model list] [Back to API list] [Back to README]