UserDto

@Serializable
data class UserDto(val userId: String, val password: String)

The user dto for the auth api composed by the userId and password.

Constructors

Link copied to clipboard
constructor(userId: String, password: String)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Extension function to convert a UserDto into a User.