Coverage Summary for Class: GeoTargeting (cloud.mindbox.mobile_sdk.inapp.domain.models)
| Class | Class, % | Method, % | Branch, % | Line, % | Instruction, % |
|---|---|---|---|---|---|
| GeoTargeting | 100% (1/1) | 100% (1/1) | 100% (4/4) | 100% (17/17) |
package cloud.mindbox.mobile_sdk.inapp.domain.models
import com.google.gson.annotations.SerializedName
internal data class GeoTargeting(
@SerializedName("cityId") val cityId: String,
@SerializedName("regionId") val regionId: String,
@SerializedName("countryId") val countryId: String,
)