Coverage Summary for Class: PushAction (cloud.mindbox.mobile_sdk.pushes)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| PushAction |
100%
(1/1)
|
100%
(1/1)
|
|
100%
(4/4)
|
100%
(17/17)
|
package cloud.mindbox.mobile_sdk.pushes
import com.google.gson.annotations.SerializedName
/**
* A class representing mindbox push action in [MindboxRemoteMessage]
* * You can use it as a model to store data from mindbox
* * with your custom push notification implementation.
* */
public data class PushAction(
@SerializedName("uniqueKey") val uniqueKey: String?,
@SerializedName("text") val text: String?,
@SerializedName("url") val url: String?,
)