# frozen_string_literal: true # encoding: utf-8 # Options: =begin Date: 2026-09-01 21:48:33 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net #MakePartial: True #MakeVirtual: True #MakeInternal: False #MakeDataContractsExtensible: False #AddReturnMarker: True #AddDescriptionAsComments: True #AddDataContractAttributes: False #AddIndexesToDataMembers: False #AddGeneratedCodeAttributes: False #AddResponseStatus: False #AddImplicitVersion: #InitializeCollections: False #ExportValueTypes: False IncludeTypes: DeleteJobApplication.* #ExcludeTypes: #AddNamespaces: #AddDefaultXmlNamespace: http://schemas.servicestack.net/types =end require 'json' require 'servicestack' module IReturnVoid def response_type() = nil def get_type_name() = 'IReturnVoid' end module IDeleteDb end class JobApplication include ServiceStack::DTO # @return [Integer] attr_accessor :id # @References('Job') # @return [Integer] attr_accessor :job_id # @References('Contact') # @return [Integer] attr_accessor :contact_id # @return [Job] attr_accessor :position # @return [Contact] attr_accessor :applicant # @return [List] attr_accessor :comments # @return [DateTime] attr_accessor :applied_date # @return [JobApplicationStatus] attr_accessor :application_status # @return [List] attr_accessor :attachments # @return [List] attr_accessor :events # @return [PhoneScreen] attr_accessor :phone_screen # @return [Interview] attr_accessor :interview # @return [JobOffer] attr_accessor :job_offer def self.properties { id: { name: 'id' }, job_id: { name: 'jobId' }, contact_id: { name: 'contactId' }, position: { name: 'position' }, applicant: { name: 'applicant' }, comments: { name: 'comments' }, applied_date: { name: 'appliedDate', type: DateTime }, application_status: { name: 'applicationStatus' }, attachments: { name: 'attachments' }, events: { name: 'events' }, phone_screen: { name: 'phoneScreen' }, interview: { name: 'interview' }, job_offer: { name: 'jobOffer' }, } end end class DeleteJobApplication include ServiceStack::DTO # @return [Integer] attr_accessor :id def self.properties { id: { name: 'id' }, } end def response_type() = nil def get_type_name() = 'DeleteJobApplication' def get_method() = 'DELETE' end