Discover Packages
github.com/garden-raccoon/resume-pkg
models
package
Version:
v0.0.4
Opens a new window with list of versions in this module.
Published: Dec 12, 2024
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Candidate struct {
EmploymentType int `json:"employment_type"`
WorkingHours int `json:"working_hours"`
WishSalaryFrom int `json:"wish_salary_from"`
WishSalaryTo int `json:"wish_salary_to"`
Specialization string `json:"specialization"`
CandidateBio *CandidateBio `json:"candidate_bio"`
}
type CandidateBio struct {
Gender int `json:"gender"`
Age int `json:"age"`
Address string `json:"address"`
}
type JobDesc struct {
Location string `json:"location"`
Website string `json:"website"`
}
type JobExp struct {
DateFrom int `json:"date_from"`
DateTo int `json:"date_to"`
JobName string `json:"job_name"`
JobDesc *JobDesc `json:"job_desc"`
JobPos string `json:"job_pos"`
JobSpec string `json:"job_spec"`
}
type Resume struct {
Name string `json:"name"`
ResumeUUID uuid .UUID `json:"resume_uuid"`
UserUUID uuid .UUID `json:"user_uuid"`
ResumeDesc *ResumeDesc `json:"resume_desc"`
}
type ResumeDesc struct {
JobExps []*JobExp `json:"job_exps"`
Candidate *Candidate `json:"candidate"`
Skills []string `json:"skills"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.