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

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


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