Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fieldaware_api / lib / fieldaware_api / client / invoices.rb
Size: Mime:
module FieldawareApi
  class Client
    module Invoices

      def invoices(params = {})
        uuids = get_uuids("invoice/", "Invoice", params)
        uuids.map{|c|invoice(c)} if uuids
      end

      def invoice(id, params = {})
        response = get("invoice/#{id}", params)
      end

    end
  end
end