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

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