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    
lobbyist-ruby / lib / lobbyist / v2 / recommended_budget.rb
Size: Mime:
module Lobbyist
  module V2

    class RecommendedBudget < Lobbyist::V2::Base
      attr_accessor :id, :recommended_credits, :calculated_at, :include_commercial, :include_unpaid, :include_customers_in_contract

      def self.list(company_id, params = {})
        create_collection_from_response(get("/v2/companies/#{company_id}/recommended-budgets.json", params))
      end

    end
  end
end