Coverage Summary for Class: PossibleDiscountsResponse (cloud.mindbox.mobile_sdk.models.operation.response)

Class Class, % Method, % Branch, % Line, % Instruction, %
PossibleDiscountsResponse 0% (0/1) 0% (0/2) 0% (0/5) 0% (0/28)


 package cloud.mindbox.mobile_sdk.models.operation.response
 
 import com.google.gson.annotations.SerializedName
 
 public open class PossibleDiscountsResponse(
     @SerializedName("discountsCount") public val discountsCount: Int? = null,
     @SerializedName("discount") public val discount: DiscountResponse? = null,
     @SerializedName("products") public val products: List<ProductResponse>? = null
 ) {
 
     override fun toString(): String = "PossibleDiscountsResponse(discountsCount=$discountsCount, " +
         "discount=$discount, products=$products)"
 }