Coverage Summary for Class: ValidationResponse (io.github.captnblubber.twitchkt.auth)

Class Method, % Branch, % Line, % Instruction, %
ValidationResponse 100% (1/1) 50% (1/2) 100% (6/6) 95.8% (113/118)
ValidationResponse$Companion 100% (1/1) 100% (1/1) 100% (4/4)
Total 100% (2/2) 50% (1/2) 100% (7/7) 95.9% (117/122)


 package io.github.captnblubber.twitchkt.auth
 
 import kotlinx.serialization.SerialName
 import kotlinx.serialization.Serializable
 
 @Serializable
 data class ValidationResponse(
     @SerialName("client_id") val clientId: String,
     val login: String,
     @SerialName("user_id") val userId: String,
     val scopes: List<String>,
     @SerialName("expires_in") val expiresIn: Int,
 )