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 get "/topics/#{slug}/sentiment/daily" end end end end