Login

Types

Link copied to clipboard
@Serializable
data class Request(val type: String, val identifier: IdentifierType? = null, val password: String? = null, val refreshToken: Boolean? = null, val token: String? = null, val deviceId: String? = null, val initialDeviceDisplayName: String? = null)
Link copied to clipboard
@Serializable
data class Response(val userId: UserId, val accessToken: String, val accessTokenExpiresInMs: Long? = null, val refreshToken: String? = null, val deviceId: String, val discoveryInformation: DiscoveryInformation? = null)

Properties

Link copied to clipboard
open val requestContentType: ContentType?
Link copied to clipboard
open val responseContentType: ContentType?

Functions

Link copied to clipboard
open fun requestSerializerBuilder(mappings: EventContentSerializerMappings, json: Json, value: Login.Request?): KSerializer<Login.Request>?
Link copied to clipboard
open fun responseSerializerBuilder(mappings: EventContentSerializerMappings, json: Json, value: Login.Response?): KSerializer<Login.Response>?