DetailResume

data class DetailResume(resume: Resume, educations: List<Education>, projects: List<Project>, skills: List<Skill>, works: List<Work>) : Parcelable

detail model for displaying everything related to Resume, Education, Project, Skill and Work

Parameters

resume

a resume instance.

educations

a list of education instance.

projects

a list of project instance.

skills

a list of skill instance.

works

a list of work instance.

Constructors

Link copied to clipboard
fun DetailResume(resume: Resume = Resume(), educations: List<Education> = emptyList(), projects: List<Project> = emptyList(), skills: List<Skill> = emptyList(), works: List<Work> = emptyList())

Functions

Link copied to clipboard
operator fun component1(): Resume
Link copied to clipboard
operator fun component2(): List<Education>
Link copied to clipboard
operator fun component3(): List<Project>
Link copied to clipboard
operator fun component4(): List<Skill>
Link copied to clipboard
operator fun component5(): List<Work>
Link copied to clipboard
fun copy(resume: Resume = Resume(), educations: List<Education> = emptyList(), projects: List<Project> = emptyList(), skills: List<Skill> = emptyList(), works: List<Work> = emptyList()): DetailResume

Properties

Link copied to clipboard
val educations: List<Education>
Link copied to clipboard
val projects: List<Project>
Link copied to clipboard
val resume: Resume
Link copied to clipboard
val skills: List<Skill>
Link copied to clipboard
val works: List<Work>