State

data class State(val id: String, val sortKey: String, val actions: Set<PushAction>, val dismissed: Boolean, val stateEvent: ClientEvent.StateBaseEvent<*>) : Notification

Constructors

Link copied to clipboard
constructor(id: String, sortKey: String, actions: Set<PushAction>, dismissed: Boolean, stateEvent: ClientEvent.StateBaseEvent<*>)

Properties

Link copied to clipboard
open override val actions: Set<PushAction>

The PushAction that should be performed, when the notification is created on the device.

Link copied to clipboard
open override val dismissed: Boolean

Indicates, that a user has dismissed a notification on the device.

Link copied to clipboard
open override val id: String

Unique identifier, that can be used for various operations in NotificationService.

Link copied to clipboard
open override val sortKey: String

Can be used to sort the notification.

Link copied to clipboard