LocalNotification

@Serializable
data class LocalNotification(val id: String = UUID.randomUUID().toString(), val type: LocalNotificationType, val title: String, val subtitle: String? = null, val body: String, val delay: Long)(source)

Constructors

Link copied to clipboard
constructor(id: String = UUID.randomUUID().toString(), type: LocalNotificationType, title: String, subtitle: String? = null, body: String, delay: Long)

Properties

Link copied to clipboard
@SerialName(value = "body")
val body: String
Link copied to clipboard
@SerialName(value = "delay")
val delay: Long
Link copied to clipboard
@SerialName(value = "id")
val id: String
Link copied to clipboard
@SerialName(value = "subtitle")
val subtitle: String?
Link copied to clipboard
@SerialName(value = "title")
val title: String
Link copied to clipboard
@SerialName(value = "type")
val type: LocalNotificationType