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

Class Class, % Method, % Branch, % Line, % Instruction, %
NamingModel 100% (1/1) 100% (1/1) 100% (4/4) 100% (17/17)


 package com.ghost.serialization.integration.model
 
 import com.ghost.serialization.annotations.GhostName
 import com.ghost.serialization.annotations.GhostSerialization
 
 @GhostSerialization
 data class NamingModel(
     @GhostName("user_id")
     val id: Int,
     @GhostName("full_name")
     val name: String,
     @GhostName("is_active")
     val active: Boolean
 )