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