InboxData

data class InboxData(id: Long, campaignId: String, isClicked: Int, tag: String, receivedTime: Long, expiry: Long, payload: String)

Author

Arshiya Khanum

Constructors

InboxData
Link copied to clipboard
fun InboxData(id: Long, campaignId: String, isClicked: Int, tag: String, receivedTime: Long, expiry: Long, payload: String)

Properties

campaignId
Link copied to clipboard
val campaignId: String
Unique identifier for the message.
expiry
Link copied to clipboard
val expiry: Long
Time the message would expire.
id
Link copied to clipboard
val id: Long
isClicked
Link copied to clipboard
var isClicked: Int
True is the message has been clicked, else false.
payload
Link copied to clipboard
val payload: String
Complete campaign payload.
receivedTime
Link copied to clipboard
val receivedTime: Long
Time the message was received on the device.
tag
Link copied to clipboard
val tag: String
Tag associated with the message, if nothing is defined general category is added.