# frozen_string_literal: true # encoding: utf-8 # Options: =begin Date: 2026-09-01 21:48:35 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: DeleteContact.* #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 Contact include ServiceStack::DTO # @return [Integer] attr_accessor :id # @Computed # @return [String] attr_accessor :display_name # @return [String] attr_accessor :profile_url # @return [String] attr_accessor :first_name # @return [String] attr_accessor :last_name # @return [Integer] attr_accessor :salary_expectation # @return [String] attr_accessor :job_type # @return [Integer] attr_accessor :availability_weeks # @return [EmploymentType] attr_accessor :preferred_work_type # @return [String] attr_accessor :preferred_location # @return [String] attr_accessor :email # @return [String] attr_accessor :phone # @return [List] attr_accessor :skills # @return [String] attr_accessor :about # @return [List] attr_accessor :applications def self.properties { id: { name: 'id' }, display_name: { name: 'displayName' }, profile_url: { name: 'profileUrl' }, first_name: { name: 'firstName' }, last_name: { name: 'lastName' }, salary_expectation: { name: 'salaryExpectation' }, job_type: { name: 'jobType' }, availability_weeks: { name: 'availabilityWeeks' }, preferred_work_type: { name: 'preferredWorkType' }, preferred_location: { name: 'preferredLocation' }, email: { name: 'email' }, phone: { name: 'phone' }, skills: { name: 'skills' }, about: { name: 'about' }, applications: { name: 'applications' }, } end end class DeleteContact include ServiceStack::DTO # @return [Integer] attr_accessor :id def self.properties { id: { name: 'id' }, } end def response_type() = nil def get_type_name() = 'DeleteContact' def get_method() = 'DELETE' end