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

Class Method, % Branch, % Line, % Instruction, %
VideoStreamResponse 0% (0/2) 0% (0/2) 0% (0/9) 0% (0/112)
VideoStreamResponse$Companion 0% (0/1) 0% (0/1) 0% (0/2)
Total 0% (0/3) 0% (0/2) 0% (0/10) 0% (0/114)


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