class Upwork::Api::Routers::Jobs::Profile

Freelancer's profile info

Constants

ENTRY_POINT

Public Class Methods

new(client) click to toggle source

Init

Arguments:

client: (Client)
# File lib/upwork/api/routers/jobs/profile.rb, line 26
def initialize(client)
  @client = client
  @client.epoint = ENTRY_POINT 
end

Public Instance Methods

get_specific(key) click to toggle source

Get specific profile

Arguments:

key: (String)
# File lib/upwork/api/routers/jobs/profile.rb, line 35
def get_specific(key)
  $LOG.i "running " + __method__.to_s
  @client.get '/profiles/v1/jobs/' + key
end