# frozen_string_literal: true
# encoding: utf-8
require 'json'
require 'servicestack'
module JobApplicationStatus
APPLIED = 'Applied'
PHONE_SCREENING = 'PhoneScreening'
PHONE_SCREENING_COMPLETED = 'PhoneScreeningCompleted'
INTERVIEW = 'Interview'
INTERVIEW_COMPLETED = 'InterviewCompleted'
OFFER = 'Offer'
DISQUALIFIED = 'Disqualified'
end
class AppUser
include ServiceStack::DTO
# @return [String]
attr_accessor :id
# @return [String]
attr_accessor :first_name
# @return [String]
attr_accessor :last_name
# @return [String]
attr_accessor :display_name
# @return [String]
attr_accessor :profile_url
def self.properties
{
id: { name: 'id' },
first_name: { name: 'firstName' },
last_name: { name: 'lastName' },
display_name: { name: 'displayName' },
profile_url: { name: 'profileUrl' },
}
end
end
class JobOffer < ServiceStack::AuditBase
# @return [Integer]
attr_accessor :id
# @return [Integer]
attr_accessor :salary_offer
# @return [String]
attr_accessor :currency
# @References('JobApplication')
# @return [Integer]
attr_accessor :job_application_id
# @References('AppUser')
# @return [String]
attr_accessor :app_user_id
# @return [AppUser]
attr_accessor :app_user
# @return [String]
attr_accessor :notes
def self.properties
{
id: { name: 'id' },
salary_offer: { name: 'salaryOffer' },
currency: { name: 'currency' },
job_application_id: { name: 'jobApplicationId' },
app_user_id: { name: 'appUserId' },
app_user: { name: 'appUser', type: AppUser },
notes: { name: 'notes' },
}
end
end
# @ValidateRequest(Validator: "IsAuthenticated")
class UpdateJobOffer
include ServiceStack::DTO
# @return [Integer]
attr_accessor :id
# @return [Integer]
attr_accessor :salary_offer
# @return [String]
attr_accessor :currency
# @return [Integer]
attr_accessor :job_application_id
# @return [JobApplicationStatus]
attr_accessor :application_status
# @return [String]
attr_accessor :notes
def self.properties
{
id: { name: 'id' },
salary_offer: { name: 'salaryOffer' },
currency: { name: 'currency' },
job_application_id: { name: 'jobApplicationId' },
application_status: { name: 'applicationStatus' },
notes: { name: 'notes' },
}
end
def response_type() = JobOffer
def get_type_name() = 'UpdateJobOffer'
end
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/UpdateJobOffer HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateJobOffer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<ApplicationStatus>Applied</ApplicationStatus>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</UpdateJobOffer>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<JobOffer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
<CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
<ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
<ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
<DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
<DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
<AppUser>
<DisplayName>String</DisplayName>
<FirstName>String</FirstName>
<Id>String</Id>
<LastName>String</LastName>
<ProfileUrl>String</ProfileUrl>
</AppUser>
<AppUserId>String</AppUserId>
<Currency>String</Currency>
<Id>0</Id>
<JobApplicationId>0</JobApplicationId>
<Notes>String</Notes>
<SalaryOffer>0</SalaryOffer>
</JobOffer>