Coverage Summary for Class: VideoStreamsResponse (com.codandotv.streamplayerapp.feature_detail.data.model)

Class Method, % Branch, % Line, % Instruction, %
VideoStreamsResponse 100% (2/2) 0% (0/2) 100% (4/4) 80% (52/65)
VideoStreamsResponse$Companion 0% (0/1) 0% (0/1) 0% (0/2)
Total 66.7% (2/3) 0% (0/2) 80% (4/5) 77.6% (52/67)


 package com.codandotv.streamplayerapp.feature_detail.data.model
 
 import kotlinx.serialization.Serializable
 
 @Serializable
 data class VideoStreamResponse(
     val id: String,
     val name: String,
     val key: String,
     val site: String,
     val size: Int,
     val official: Boolean,
     val type: String,
 )
 
 @Serializable
 data class VideoStreamsResponse(
     val id: Long,
     val results: List<VideoStreamResponse>
 )