ProjectEntity

data class ProjectEntity(projectId: Int, parentId: Int, projectName: String, teamSize: Int, projectSummary: String, role: String, technology: String)

Project model for local database.

Constructors

Link copied to clipboard
fun ProjectEntity(projectId: Int = 0, parentId: Int, projectName: String, teamSize: Int, projectSummary: String, role: String, technology: String)

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(): String
Link copied to clipboard
operator fun component6(): String
Link copied to clipboard
operator fun component7(): String
Link copied to clipboard
fun copy(projectId: Int = 0, parentId: Int, projectName: String, teamSize: Int, projectSummary: String, role: String, technology: String): ProjectEntity

Properties

Link copied to clipboard
val parentId: Int

id of the resume that this model belong to.

Link copied to clipboard
val projectId: Int = 0

id of the project model and primary key.

Link copied to clipboard
val projectName: String

name of the project.

Link copied to clipboard
val projectSummary: String

summary of the project.

Link copied to clipboard
val role: String

the position for the project.

Link copied to clipboard
val teamSize: Int

size of the project.

Link copied to clipboard
val technology: String

used technologies for the project.