Coverage Summary for Class: SegmentationCheckWrapper (cloud.mindbox.mobile_sdk.inapp.domain.models)

Class Class, % Method, % Branch, % Line, % Instruction, %
SegmentationCheckWrapper 100% (1/1) 100% (1/1) 100% (3/3) 100% (12/12)


 package cloud.mindbox.mobile_sdk.inapp.domain.models
 
 internal data class SegmentationCheckWrapper(
     val status: String,
     val customerSegmentations: List<CustomerSegmentationInApp>,
 )
 
 internal data class CustomerSegmentationInApp(
     val segmentation: String,
     val segment: String = NO_SEGMENT,
 ) {
     companion object {
         const val NO_SEGMENT = ""
     }
 }