AttendanceModel

data class AttendanceModel(val subject: String, val total: Int = 0, val present: Int = 0, val teacher: String? = null, val fromSyllabus: Boolean? = false, val isArchive: Boolean? = false, val fromOnlineSyllabus: Boolean? = false, val days: Days = Days(), val stack: Deque<AttendanceSave> = ArrayDeque(), val created: Long? = System.currentTimeMillis(), var id: Int = 0) : Parcelable, Serializable

Constructors

Link copied to clipboard
constructor(subject: String, total: Int = 0, present: Int = 0, teacher: String? = null, fromSyllabus: Boolean? = false, isArchive: Boolean? = false, fromOnlineSyllabus: Boolean? = false, days: Days = Days(), stack: Deque<AttendanceSave> = ArrayDeque(), created: Long? = System.currentTimeMillis(), id: Int = 0)

Properties

Link copied to clipboard
Link copied to clipboard
val days: Days
Link copied to clipboard
Link copied to clipboard
val fromSyllabus: Boolean? = false
Link copied to clipboard
var id: Int
Link copied to clipboard
val isArchive: Boolean? = false
Link copied to clipboard
val present: Int = 0
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val teacher: String? = null
Link copied to clipboard
val total: Int = 0

Functions

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