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

Class Method, % Branch, % Line, % Instruction, %
CustomerSegmentationInApp 100% (1/1) 100% (2/2) 100% (12/12)
CustomerSegmentationInApp$Companion
Total 100% (1/1) 100% (2/2) 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 = ""
     }
 }