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 / customers_segmentation.rb
Size: Mime:
module Lobbyist
  module V2
    class CustomersSegmentation < Lobbyist::V2::HashieBase
      attr_accessor :customers_count, :customers_in_segment, :repeat_customer_rate

      def self.list(company_id, params = {})
        create_response(post("/v2/companies/#{company_id}/customers_segmentation/list.json", params))
      end
    end
  end
end