class Google::Apis::BooksV1::Review::Source
Information regarding the source of this review, when the review is not from a Google
Books user.
Attributes
description[RW]
Name of the source. Corresponds to the JSON property `description` @return [String]
extra_description[RW]
Extra text about the source of the review. Corresponds to the JSON property `extraDescription` @return [String]
url[RW]
URL of the source of the review. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/books_v1/classes.rb, line 2546 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/books_v1/classes.rb, line 2551 def update!(**args) @description = args[:description] if args.key?(:description) @extra_description = args[:extra_description] if args.key?(:extra_description) @url = args[:url] if args.key?(:url) end