module Spear::Plugins::Model::Application

Public Instance Methods

application_blank(job_did) click to toggle source
# File lib/spear/plugins/model/application.rb, line 23
def application_blank(job_did)
  response = super(job_did)
  Structure::Application::Blank.new(response)
end
application_status(ids, email=nil) click to toggle source
# File lib/spear/plugins/model/application.rb, line 18
def application_status(ids, email=nil)
  response = super(ids, email)
  Structure::Application::State.new(response)
end
application_submit(job_did, questions=[], test=false) click to toggle source
# File lib/spear/plugins/model/application.rb, line 28
def application_submit(job_did, questions=[], test=false)
  response = super(job_did, questions, test)
  Structure::Application::Submit.new(response)
end
create_application(host_site, data={}) click to toggle source

Application Creation

# File lib/spear/plugins/model/application.rb, line 13
def create_application(host_site, data={})
  response = super(host_site, data)
  Structure::Application::Create.new(response)
end
history(user_external_id) click to toggle source
Calls superclass method Spear::Resource::Application#history
# File lib/spear/plugins/model/application.rb, line 7
def history(user_external_id)
  response = super(user_external_id)
  Structure::Application::History.new(response)
end