MyApp

<back to all web services

CreateJobOffer

Talent
Requires Authentication
# 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 CreateJobOffer
    include ServiceStack::DTO

    # @Validate(Validator: "GreaterThan(0)")
    # @return [Integer]
    attr_accessor :salary_offer

    # @return [String]
    attr_accessor :currency
    # @Validate(Validator: "GreaterThan(0)")
    # @return [Integer]
    attr_accessor :job_application_id

    # @return [JobApplicationStatus]
    attr_accessor :application_status
    # @Validate(Validator: "NotEmpty")
    # @return [String]
    attr_accessor :notes

    def self.properties
        {
            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() = 'CreateJobOffer'
end

Ruby CreateJobOffer DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/CreateJobOffer HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	salaryOffer: 0,
	currency: String,
	jobApplicationId: 0,
	applicationStatus: Applied,
	notes: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	id: 0,
	salaryOffer: 0,
	currency: String,
	jobApplicationId: 0,
	appUserId: String,
	appUser: 
	{
		id: String,
		firstName: String,
		lastName: String,
		displayName: String,
		profileUrl: String
	},
	notes: String,
	createdDate: 0001-01-01,
	createdBy: String,
	modifiedDate: 0001-01-01,
	modifiedBy: String,
	deletedDate: 0001-01-01,
	deletedBy: String
}