module TmdbRexx::Client::Review
Constants
- RESOURCE
Public Instance Methods
review(review_id, options = {})
click to toggle source
Get the full details of a review by ID.
@see docs.themoviedb.apiary.io/#reference/reviewid
@param [String] id the review id
@return [Hashie::Mash] build response
@example Get the review api response
TmdbRexx::Client.review("review-id")
# File lib/tmdb_rexx/client/review.rb, line 16 def review(review_id, options = {}) get([RESOURCE, review_id].join("/"), options) end