class GoogleApiCustomization::Review

Attributes

author_name[RW]
author_url[RW]
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_api_customization/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