MessageStackNotification

data class MessageStackNotification(    val id: MessagingAppService.MessageStackNotificationId,     val senderDisplayName: StringResolver,     val image: DrawableResolver?,     val applicationDisplayName: StringResolver,     val unreadMessagesCount: Int,     val quickReplyMessages: List<String>,     val playbackState: MessagingAppService.PlaybackState,     val replyInfo: MessagingAppService.ReplyInfo,     val callState: MessagingAppService.CallState) : Parcelable

The message stack notification.

Constructors

Link copied to clipboard
fun MessageStackNotification(    id: MessagingAppService.MessageStackNotificationId,     senderDisplayName: StringResolver,     image: DrawableResolver?,     applicationDisplayName: StringResolver,     unreadMessagesCount: Int,     quickReplyMessages: List<String>,     playbackState: MessagingAppService.PlaybackState,     replyInfo: MessagingAppService.ReplyInfo,     callState: MessagingAppService.CallState)

Properties

Link copied to clipboard
val applicationDisplayName: StringResolver

The name of the messaging application this notification is part of.

Link copied to clipboard
val callState: MessagingAppService.CallState

The current call state of the notification.

Link copied to clipboard
val id: MessagingAppService.MessageStackNotificationId

Global and temporal unique ID for the notification.

Link copied to clipboard
val image: DrawableResolver?

An image associated with this contact, if available, or null if there is no image available.

Link copied to clipboard
val playbackState: MessagingAppService.PlaybackState

The current playback state of the notification.

Link copied to clipboard
val quickReplyMessages: List<String>

The list of quick reply messages.

Link copied to clipboard
val replyInfo: MessagingAppService.ReplyInfo

Contains details about the message reply, associated with the notification.

Link copied to clipboard
val senderDisplayName: StringResolver

The display name of the sender.

Link copied to clipboard
val unreadMessagesCount: Int

The number of unread messages.

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)