Coverage Summary for Class: CustomerSegmentationResponse (cloud.mindbox.mobile_sdk.models.operation.response)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| CustomerSegmentationResponse |
0%
(0/1)
|
0%
(0/2)
|
|
0%
(0/4)
|
0%
(0/19)
|
package cloud.mindbox.mobile_sdk.models.operation.response
import com.google.gson.annotations.SerializedName
public open class CustomerSegmentationResponse(
@SerializedName("segmentation") public val segmentation: SegmentationResponse? = null,
@SerializedName("segment") public val segment: SegmentResponse? = null
) {
override fun toString(): String = "CustomerSegmentationResponse(segmentation=$segmentation, " +
"segment=$segment)"
}