EducationEntity

data class EducationEntity(educationId: Int, parentId: Int, schoolClass: String, passingYear: Int, percentageOrCgpa: Double)

Education model for the local database.

Constructors

Link copied to clipboard
fun EducationEntity(educationId: Int = 0, parentId: Int, schoolClass: String, passingYear: Int, percentageOrCgpa: Double)

Functions

Link copied to clipboard
operator fun component1(): Int
Link copied to clipboard
operator fun component2(): Int
Link copied to clipboard
operator fun component3(): String
Link copied to clipboard
operator fun component4(): Int
Link copied to clipboard
operator fun component5(): Double
Link copied to clipboard
fun copy(educationId: Int = 0, parentId: Int, schoolClass: String, passingYear: Int, percentageOrCgpa: Double): EducationEntity

Properties

Link copied to clipboard
val educationId: Int = 0

id of the education and primary key.

Link copied to clipboard
val parentId: Int

id of the resume that this model belong to.

Link copied to clipboard
val passingYear: Int

when did the user passed the school.

Link copied to clipboard
val percentageOrCgpa: Double

percentage or CGPA.

Link copied to clipboard
val schoolClass: String

class of the education.