ResumeEntity

data class ResumeEntity(resumeId: Int, name: String, avatarUrl: String, mobileNumber: String, emailAddress: String, careerObjective: String, totalYearsOfExperience: Int, residenceAddress: String)

Resume model for local database.

Constructors

Link copied to clipboard
fun ResumeEntity(resumeId: Int = 0, name: String, avatarUrl: String, mobileNumber: String, emailAddress: String, careerObjective: String, totalYearsOfExperience: Int, residenceAddress: String)

Functions

Link copied to clipboard
operator fun component1(): Int
Link copied to clipboard
operator fun component2(): String
Link copied to clipboard
operator fun component3(): String
Link copied to clipboard
operator fun component4(): String
Link copied to clipboard
operator fun component5(): String
Link copied to clipboard
operator fun component6(): String
Link copied to clipboard
operator fun component7(): Int
Link copied to clipboard
operator fun component8(): String
Link copied to clipboard
fun copy(resumeId: Int = 0, name: String, avatarUrl: String, mobileNumber: String, emailAddress: String, careerObjective: String, totalYearsOfExperience: Int, residenceAddress: String): ResumeEntity

Properties

Link copied to clipboard
val avatarUrl: String

image path for the resume.

Link copied to clipboard
val careerObjective: String

string representation of the objective of the resume.

Link copied to clipboard
val emailAddress: String

email address for the resume.

Link copied to clipboard
val mobileNumber: String

cell number for the resume.

Link copied to clipboard
val name: String

name of the resume author.

Link copied to clipboard
val residenceAddress: String

address of the user.

Link copied to clipboard
val resumeId: Int = 0

id for the resume, acts as a primary key for the resume too.

Link copied to clipboard
val totalYearsOfExperience: Int

how many years of experience for the resume.