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

Class Class, % Method, % Branch, % Line, % Instruction, %
AmountResponse 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 AmountResponse(
     @SerializedName("type") public val type: AmountTypeResponse? = null,
     @SerializedName("value") public val value: Double? = null
 ) {
 
     override fun toString(): String = "AmountResponse(type=$type, value=$value)"
 }