Request

@Serializable
data class Request(val username: String, val password: String)

Represents the request body for the login API call.

Constructors

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

Properties

Link copied to clipboard
@SerialName(value = "password")
val password: String

The password of the user.

Link copied to clipboard
@SerialName(value = "username")
val username: String

The username of the user.