Response

@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)

Constructors

Link copied to clipboard
constructor(userId: UserId, accessToken: String, accessTokenExpiresInMs: Long? = null, refreshToken: String? = null, deviceId: String, discoveryInformation: DiscoveryInformation? = null)

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String
Link copied to clipboard
@SerialName(value = "expires_in_ms")
val accessTokenExpiresInMs: Long?
Link copied to clipboard
@SerialName(value = "device_id")
val deviceId: String
Link copied to clipboard
@SerialName(value = "well_known")
val discoveryInformation: DiscoveryInformation?
Link copied to clipboard
@SerialName(value = "refresh_token")
val refreshToken: String?
Link copied to clipboard
@SerialName(value = "user_id")
val userId: UserId