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

Class Class, % Method, % Branch, % Line, % Instruction, %
BalanceTypeResponse 0% (0/1) 0% (0/2) 0% (0/3) 0% (0/19)


 package cloud.mindbox.mobile_sdk.models.operation.response
 
 import cloud.mindbox.mobile_sdk.models.operation.Ids
 import com.google.gson.annotations.SerializedName
 
 public open class BalanceTypeResponse(
     @SerializedName("ids") public val ids: Ids? = null,
     @SerializedName("name") public val name: String? = null
 ) {
 
     override fun toString(): String = "BalanceTypeResponse(ids=$ids, name=$name)"
 }