# 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 Interview < ServiceStack::AuditBase
# @return [Integer]
attr_accessor :id
# @return [DateTime]
attr_accessor :booking_time
# @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 [JobApplicationStatus]
attr_accessor :application_status
# @return [String]
attr_accessor :notes
def self.properties
{
id: { name: 'id' },
booking_time: { name: 'bookingTime', type: DateTime },
job_application_id: { name: 'jobApplicationId' },
app_user_id: { name: 'appUserId' },
app_user: { name: 'appUser', type: AppUser },
application_status: { name: 'applicationStatus' },
notes: { name: 'notes' },
}
end
end
# @ValidateRequest(Validator: "IsAuthenticated")
class QueryInterviews < ServiceStack::QueryDb
# @return [Integer]
attr_accessor :id
# @return [Integer]
attr_accessor :job_application_id
def self.properties
{
id: { name: 'id' },
job_application_id: { name: 'jobApplicationId' },
}
end
end
class Todo
include ServiceStack::DTO
# @return [Integer]
attr_accessor :id
# @return [String]
attr_accessor :text
# @return [TrueClass]
attr_accessor :is_finished
def self.properties
{
id: { name: 'id' },
text: { name: 'text' },
is_finished: { name: 'isFinished' },
}
end
end
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsonl/reply/QueryInterviews HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0,"jobApplicationId":0,"skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"offset":0,"total":0,"results":[{"id":0,"bookingTime":"0001-01-01T00:00:00","jobApplicationId":0,"appUserId":"String","appUser":{"id":"String","firstName":"String","lastName":"String","displayName":"String","profileUrl":"String"},"applicationStatus":"Applied","notes":"String","createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}