Class: Upwork::Api::Routers::Hr::Freelancers::Applications

Inherits:
Object
  • Object
show all
Defined in:
lib/upwork/api/routers/hr/freelancers/applications.rb

Overview

Freelancer Job Applications API

Constant Summary collapse

ENTRY_POINT =
'api'

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Applications

Init

Arguments:

client: (Client)


27
28
29
30
# File 'lib/upwork/api/routers/hr/freelancers/applications.rb', line 27

def initialize(client)
  @client = client
  @client.epoint = ENTRY_POINT 
end

Instance Method Details

#get_list(params = {}) ⇒ Object

Get list of applications

Arguments:

params: (Hash)


36
37
38
39
# File 'lib/upwork/api/routers/hr/freelancers/applications.rb', line 36

def get_list(params = {})
  $LOG.i "running " + __method__.to_s
  @client.get '/hr/v4/contractors/applications', params
end

#get_specific(reference) ⇒ Object

Get specific application

Arguments:

reference: (String)


45
46
47
48
# File 'lib/upwork/api/routers/hr/freelancers/applications.rb', line 45

def get_specific(reference)
  $LOG.i "running " + __method__.to_s
  @client.get '/hr/v4/contractors/applications/' + reference
end