Coverage Summary for Class: Address (com.ghost.serialization.integration.model)
| Class | Class, % | Method, % | Branch, % | Line, % | Instruction, % |
|---|---|---|---|---|---|
| Address | 100% (1/1) | 100% (1/1) | 100% (4/4) | 100% (22/22) |
package com.ghost.serialization.integration.model
import com.ghost.serialization.annotations.GhostSerialization
@GhostSerialization
data class Address(
val street: String,
val city: String,
val zipCode: String,
val country: String = "US"
)