S2CNewJWTPacket

data class S2CNewJWTPacket(val token: String) : AxochatPacket.S2C

After the client sent the server a RequestJWT packet, the server will provide the client with json web token. This token can be used in the LoginJWT packet.

Parameters

token

JWT token

Constructors

Link copied to clipboard
constructor(token: String)

Properties

Link copied to clipboard
@SerializedName(value = "token")
val token: String