Coverage Summary for Class: WrappedModel (com.ghost.serialization.integration.model)

Class Class, % Method, % Branch, % Line, % Instruction, %
WrappedModel 100% (1/1) 100% (1/1) 100% (5/5) 100% (22/22)


 package com.ghost.serialization.integration.model
 
 import com.ghost.serialization.annotations.GhostSerialization
 import com.ghost.serialization.annotations.GhostWrap
 
 @GhostSerialization
 data class WrappedModel(
     val id: Int,
     @GhostWrap("metadata.info")
     val name: String,
     @GhostWrap("metadata.info")
     val age: Int,
     @GhostWrap("system.flags")
     val active: Boolean
 )