class EasyPost::Printer

Public Instance Methods

job() click to toggle source
# File lib/easypost/printer.rb, line 3
def job
  response = EasyPost.make_request(
    :get, url + '/jobs', @api_key
  )
  return EasyPost::Util::convert_to_easypost_object(response, api_key)
end
print(params={}) click to toggle source