Coverage Summary for Class: DiscountResponse (cloud.mindbox.mobile_sdk.models.operation.response)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| DiscountResponse |
0%
(0/1)
|
0%
(0/2)
|
|
0%
(0/3)
|
0%
(0/19)
|
package cloud.mindbox.mobile_sdk.models.operation.response
import com.google.gson.annotations.SerializedName
public open class DiscountResponse(
@SerializedName("amount") public val amount: Double? = null,
@SerializedName("amountType") public val amountType: DiscountAmountTypeResponse? = null
) {
override fun toString(): String = "DiscountResponse(amount=$amount, amountType=$amountType)"
}