Coverage Summary for Class: UsedResponse (cloud.mindbox.mobile_sdk.models.operation.response)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| UsedResponse |
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 UsedResponse(
@SerializedName("usageServiceStatus") public val usageServiceStatus: UsageServiceStatusResponse? = null,
@SerializedName("amount") public val amount: Double? = null
) {
override fun toString(): String = "UsedResponse(usageServiceStatus=$usageServiceStatus, amount=$amount)"
}