class Feefo::Review

Attributes

data[R]

Public Class Methods

new(data) click to toggle source
# File lib/feefo/review.rb, line 5
def initialize(data)
  @data = data
end

Public Instance Methods

customer_comment() click to toggle source
# File lib/feefo/review.rb, line 9
def customer_comment
  data['CUSTOMERCOMMENT']
end
date() click to toggle source
# File lib/feefo/review.rb, line 37
def date
  data['DATE']
end
description() click to toggle source
# File lib/feefo/review.rb, line 29
def description
  data['DESCRIPTION']
end
review_date() click to toggle source
# File lib/feefo/review.rb, line 13
def review_date
  data['HREVIEWDATE']
end
review_rating() click to toggle source
# File lib/feefo/review.rb, line 25
def review_rating
  data['HREVIEWRATING']
end
service_rating() click to toggle source
# File lib/feefo/review.rb, line 17
def service_rating
  data['SERVICERATING']
end
vendor_comment() click to toggle source
# File lib/feefo/review.rb, line 21
def vendor_comment
  data['VENDORCOMMENT']
end