/* Options: Date: 2024-12-22 21:45:05 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteJobApplication.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { public static class DeleteJobApplication implements IReturnVoid, IDeleteDb { public Integer id = null; public Integer getId() { return id; } public DeleteJobApplication setId(Integer value) { this.id = value; return this; } } public static class JobApplication { public Integer id = null; @References(Type=Job.class) public Integer jobId = null; @References(Type=Contact.class) public Integer contactId = null; public Job position = null; public Contact applicant = null; public ArrayList comments = new ArrayList(); public Date appliedDate = null; public JobApplicationStatus applicationStatus = null; public ArrayList attachments = new ArrayList(); public ArrayList events = new ArrayList(); public PhoneScreen phoneScreen = null; public Interview interview = null; public JobOffer jobOffer = null; public Integer getId() { return id; } public JobApplication setId(Integer value) { this.id = value; return this; } public Integer getJobId() { return jobId; } public JobApplication setJobId(Integer value) { this.jobId = value; return this; } public Integer getContactId() { return contactId; } public JobApplication setContactId(Integer value) { this.contactId = value; return this; } public Job getPosition() { return position; } public JobApplication setPosition(Job value) { this.position = value; return this; } public Contact getApplicant() { return applicant; } public JobApplication setApplicant(Contact value) { this.applicant = value; return this; } public ArrayList getComments() { return comments; } public JobApplication setComments(ArrayList value) { this.comments = value; return this; } public Date getAppliedDate() { return appliedDate; } public JobApplication setAppliedDate(Date value) { this.appliedDate = value; return this; } public JobApplicationStatus getApplicationStatus() { return applicationStatus; } public JobApplication setApplicationStatus(JobApplicationStatus value) { this.applicationStatus = value; return this; } public ArrayList getAttachments() { return attachments; } public JobApplication setAttachments(ArrayList value) { this.attachments = value; return this; } public ArrayList getEvents() { return events; } public JobApplication setEvents(ArrayList value) { this.events = value; return this; } public PhoneScreen getPhoneScreen() { return phoneScreen; } public JobApplication setPhoneScreen(PhoneScreen value) { this.phoneScreen = value; return this; } public Interview getInterview() { return interview; } public JobApplication setInterview(Interview value) { this.interview = value; return this; } public JobOffer getJobOffer() { return jobOffer; } public JobApplication setJobOffer(JobOffer value) { this.jobOffer = value; return this; } } }