module Datarank class Client # Module containing methods for interacting with a topic's sentiment data module Sentiment # Fetch sentiment for a topic grouped by day # # @param slug [String] A topic's unique identifier slug def sentiment_daily(slug, options={}) get "/topics/#{slug}/sentiment/daily", options end end end end