AuthenticateUserByName

@Serializable
data class AuthenticateUserByName(val username: String? = null, val pw: String? = null)

The authenticate user by name request body.

Constructors

Link copied to clipboard
constructor(username: String? = null, pw: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "Pw")
val pw: String?

The plain text password.

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

The username.