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