/* Options: Date: 2026-09-01 21:49:35 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteJobApplication.* //ExcludeTypes: //DefaultImports: */ package dtos import ( "time" ) type JobApplication struct { Id int `json:"id,omitempty"` // @References("typeof(MyApp.ServiceModel.Job)") JobId int `json:"jobId,omitempty"` // @References("typeof(MyApp.ServiceModel.Contact)") ContactId int `json:"contactId,omitempty"` Position Job `json:"position"` Applicant Contact `json:"applicant"` Comments []JobApplicationComment `json:"comments"` AppliedDate time.Time `json:"appliedDate,omitempty"` ApplicationStatus JobApplicationStatus `json:"applicationStatus,omitempty"` Attachments []JobApplicationAttachment `json:"attachments"` Events []JobApplicationEvent `json:"events"` PhoneScreen PhoneScreen `json:"phoneScreen"` Interview Interview `json:"interview"` JobOffer JobOffer `json:"jobOffer"` } type DeleteJobApplication struct { Id int `json:"id,omitempty"` } func (DeleteJobApplication) CreateResponseVoid() {} func (DeleteJobApplication) HttpMethod() string { return "DELETE" }