# frozen_string_literal: true # encoding: utf-8 # Options: =begin Date: 2026-09-01 21:25:08 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: DeleteJobApplicationComment.* #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 JobApplicationComment < ServiceStack::AuditBase # @return [Integer] attr_accessor :id # @References('AppUser') # @return [String] attr_accessor :app_user_id # @return [AppUser] attr_accessor :app_user # @References('JobApplication') # @return [Integer] attr_accessor :job_application_id # @return [String] attr_accessor :comment def self.properties { id: { name: 'id' }, app_user_id: { name: 'appUserId' }, app_user: { name: 'appUser' }, job_application_id: { name: 'jobApplicationId' }, comment: { name: 'comment' }, } end end # @ValidateRequest(Validator: "IsAuthenticated") class DeleteJobApplicationComment include ServiceStack::DTO # @return [Integer] attr_accessor :id def self.properties { id: { name: 'id' }, } end def response_type() = nil def get_type_name() = 'DeleteJobApplicationComment' def get_method() = 'DELETE' end