Repository URL to install this package:
Version:
0.8.93 ▾
|
module Lobbyist
module V2
class EnterpriseMetrics < Lobbyist::V2::Base
attr_accessor :id, :enterprise_id, :sentiment_score, :published_reviews_count
attr_accessor :positive_reviews_count, :negative_reviews_count, :distribution_by_medium
attr_accessor :distribution_by_source, :distribution_by_rating, :appointments_count
attr_accessor :customers_count, :customers_last_12_count, :average_reading_time
attr_accessor :active_locations_count, :inactive_locations_count
attr_accessor :distribution_by_syndication_type, :syndicated_reviews_count, :review_page_views
attr_accessor :cumulative_locations_by_month, :locations_with_review_counts, :reviews_by_month
attr_accessor :cumulative_reviews_by_month, :recent_review_list
def self.list(enterprise_id, params = {})
create_from_response(get("/v2/enterprises/#{enterprise_id}/enterprise_metrics.json", params))
end
end
end
end