Coverage Summary for Class: TargetingErrorKey (cloud.mindbox.mobile_sdk.inapp.domain.models)
| Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| TargetingErrorKey$CustomerSegmentation |
100%
(1/1)
|
|
100%
(1/1)
|
100%
(2/2)
|
| TargetingErrorKey$Geo |
100%
(1/1)
|
|
100%
(1/1)
|
100%
(2/2)
|
| TargetingErrorKey$ProductSegmentation |
100%
(1/1)
|
|
100%
(2/2)
|
100%
(7/7)
|
| Total |
100%
(3/3)
|
|
100%
(4/4)
|
100%
(11/11)
|
package cloud.mindbox.mobile_sdk.inapp.domain.models
internal sealed interface TargetingErrorKey {
data object CustomerSegmentation : TargetingErrorKey
data object Geo : TargetingErrorKey
data class ProductSegmentation(
val product: Pair<String, String>,
) : TargetingErrorKey
}