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

Class Class, % Method, % Branch, % Line, % Instruction, %
ProductSegmentationResponseDto 100% (1/1) 33.3% (1/3) 60% (3/5) 66.7% (8/12)


 package cloud.mindbox.mobile_sdk.inapp.domain.models
 
 import cloud.mindbox.mobile_sdk.models.operation.Ids
 import com.google.gson.annotations.SerializedName
 
 internal data class ProductSegmentationResponseDto(
     @SerializedName("products")
     val products: List<ProductResponseDto?>?,
     @SerializedName("status")
     val status: String?,
 )
 
 internal data class ProductResponseDto(
     @SerializedName("ids")
     val ids: Ids?,
     @SerializedName("segmentations")
     val segmentations: List<SegmentationResponseDto?>?,
 )
 
 internal data class SegmentResponseDto(
     @SerializedName("ids")
     val ids: Ids?,
 )
 
 internal data class SegmentationResponseDto(
     @SerializedName("ids")
     val ids: Ids?,
     @SerializedName("segment")
     val segment: SegmentResponseDto?,
 )