Project

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

domain model for project properties

Constructors

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

Properties

Link copied to clipboard
val parentId: Int = 0
Link copied to clipboard
val projectId: Int = 0
Link copied to clipboard
val projectName: String
Link copied to clipboard
val projectSummary: String
Link copied to clipboard
val role: String
Link copied to clipboard
val teamSize: Int = 0
Link copied to clipboard
val technology: String