class GooglePlaces::Review
Attributes
rating[RW]
text[RW]
time[RW]
type[RW]
Public Class Methods
new(rating, type, author_name, author_url, text, time)
click to toggle source
# File lib/google_places/review.rb, line 5 def initialize(rating, type, author_name, author_url, text, time) @rating = rating @type = type @author_name = author_name @author_url = author_url @text = text @time = time end