StaffData

@Serializable
data class StaffData(    val displayName: String? = null,     val firstname: String? = null,     val id: Long? = null,     val joiningDate: LocalDate? = null,     val lastname: String? = null,     val officeId: Long? = null,     val officeName: String? = null,     val rowIndex: Int? = null)

Parameters

displayName
firstname
id
joiningDate
lastname
officeId
officeName
rowIndex

Constructors

Link copied to clipboard
constructor(    displayName: String? = null,     firstname: String? = null,     id: Long? = null,     joiningDate: LocalDate? = null,     lastname: String? = null,     officeId: Long? = null,     officeName: String? = null,     rowIndex: Int? = null)

Properties

Link copied to clipboard
val displayName: String? = null
Link copied to clipboard
val firstname: String? = null
Link copied to clipboard
val id: Long? = null
Link copied to clipboard
val joiningDate: LocalDate? = null
Link copied to clipboard
val lastname: String? = null
Link copied to clipboard
val officeId: Long? = null
Link copied to clipboard
val officeName: String? = null
Link copied to clipboard
val rowIndex: Int? = null