NoticeModel

data class NoticeModel(val title: String? = null, val body: String? = null, val link: String? = null, val sender: String? = null, val path: String? = null, val created: Long? = null) : Parcelable

Model class to get notices from firestore

Constructors

Link copied to clipboard
constructor(title: String? = null, body: String? = null, link: String? = null, sender: String? = null, path: String? = null, created: Long? = null)

Properties

Link copied to clipboard
val body: String? = null
Link copied to clipboard
val created: Long? = null
Link copied to clipboard
val link: String? = null
Link copied to clipboard
val path: String? = null
Link copied to clipboard
val sender: String? = null
Link copied to clipboard
val title: String? = null

Functions

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