Coverage Summary for Class: BalanceResponse (cloud.mindbox.mobile_sdk.models.operation.response)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| BalanceResponse |
0%
(0/1)
|
0%
(0/2)
|
|
0%
(0/9)
|
0%
(0/55)
|
package cloud.mindbox.mobile_sdk.models.operation.response
import com.google.gson.annotations.SerializedName
public open class BalanceResponse(
@SerializedName("total") public val total: Double? = null,
@SerializedName("available") public val available: Double? = null,
@SerializedName("blocked") public val blocked: Double? = null,
@SerializedName("nearestExpiration") public val nearestExpiration: NearestExpirationResponse? = null,
@SerializedName("systemName") public val systemName: String? = null,
@SerializedName("balanceType") public val balanceType: BalanceTypeResponse? = null
) {
override fun toString(): String =
"BalanceResponse(total=$total, available=$available, blocked=$blocked, " +
"nearestExpiration=$nearestExpiration, systemName=$systemName, " +
"balanceType=$balanceType)"
}