MyApp

<back to all web services

CreateJobApplicationEvent

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 JobApplicationEvent < ServiceStack::AuditBase
    # @return [Integer]
    attr_accessor :id
    # @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 :description
    # @return [JobApplicationStatus]
    attr_accessor :status
    # @return [DateTime]
    attr_accessor :event_date

    def self.properties
        {
            id: { name: 'id' },
            job_application_id: { name: 'jobApplicationId' },
            app_user_id: { name: 'appUserId' },
            app_user: { name: 'appUser', type: AppUser },
            description: { name: 'description' },
            status: { name: 'status' },
            event_date: { name: 'eventDate', type: DateTime },
        }
    end

end

# @ValidateRequest(Validator: "IsAuthenticated")
class CreateJobApplicationEvent
    include ServiceStack::DTO

    def response_type() = JobApplicationEvent
    def get_type_name() = 'CreateJobApplicationEvent'
end

Ruby CreateJobApplicationEvent DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /json/reply/CreateJobApplicationEvent HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/json
Content-Type: application/json
Content-Length: length

{}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"id":0,"jobApplicationId":0,"appUserId":"String","appUser":{"id":"String","firstName":"String","lastName":"String","displayName":"String","profileUrl":"String"},"description":"String","status":"Applied","eventDate":"0001-01-01T00:00:00","createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"}