module Metrika::Api::Statistics

Public Instance Methods

counter_stat_geo_path() click to toggle source
# File lib/metrika/api/statistics.rb, line 50
def counter_stat_geo_path
  "/stat/geo"
end
counter_stat_interest_path() click to toggle source
# File lib/metrika/api/statistics.rb, line 61
def counter_stat_interest_path
  "/stat/interest"
end
get_counter_stat_geo(id, params = {}) click to toggle source

Geo

# File lib/metrika/api/statistics.rb, line 44
def get_counter_stat_geo(id, params = {})
  params = self.format_params(params)

  self.get(self.counter_stat_geo_path, params.merge(:id => id))
end
get_counter_stat_interest(id, params = {}) click to toggle source

Interest

# File lib/metrika/api/statistics.rb, line 55
def get_counter_stat_interest(id, params = {})
  params = self.format_params(params)

  self.get(self.counter_stat_interest_path, params.merge(:id => id))
end