Coverage Summary for Class: CatalogProductListResponse (cloud.mindbox.mobile_sdk.models.operation.response)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| CatalogProductListResponse |
100%
(1/1)
|
50%
(1/2)
|
|
50%
(2/4)
|
73.7%
(14/19)
|
package cloud.mindbox.mobile_sdk.models.operation.response
import com.google.gson.annotations.SerializedName
public open class CatalogProductListResponse(
@SerializedName("processingStatus") public val processingStatus: ProcessingStatusResponse? = null,
@SerializedName("items") public val items: List<ItemResponse>? = null
) {
override fun toString(): String = "CatalogProductListResponse(processingStatus=$processingStatus, " +
"items=$items)"
}