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

Class Class, % Method, % Branch, % Line, % Instruction, %
ProductResponse 0% (0/1) 0% (0/2) 0% (0/11) 0% (0/73)


 package cloud.mindbox.mobile_sdk.models.operation.response
 
 import cloud.mindbox.mobile_sdk.models.operation.CustomFields
 import cloud.mindbox.mobile_sdk.models.operation.Ids
 import com.google.gson.annotations.SerializedName
 
 public open class ProductResponse(
     @SerializedName("ids") public val ids: Ids? = null,
     @SerializedName("name") public val name: String? = null,
     @SerializedName("displayName") public val displayName: String? = null,
     @SerializedName("url") public val url: String? = null,
     @SerializedName("pictureUrl") public val pictureUrl: String? = null,
     @SerializedName("price") public val price: Double? = null,
     @SerializedName("oldPrice") public val oldPrice: Double? = null,
     @SerializedName("customFields") public val customFields: CustomFields? = null
 ) {
 
     override fun toString(): String =
         "ProductResponse(ids=$ids, name=$name, displayName=$displayName, " +
             "url=$url, pictureUrl=$pictureUrl, price=$price, " +
             "oldPrice=$oldPrice, customFields=$customFields)"
 }