Class: Google::Apis::BooksV1::Review::Source

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/books_v1/classes.rb,
generated/google/apis/books_v1/representations.rb,
generated/google/apis/books_v1/representations.rb

Overview

Information regarding the source of this review, when the review is not from a Google Books user.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Source

Returns a new instance of Source.



2394
2395
2396
# File 'generated/google/apis/books_v1/classes.rb', line 2394

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Name of the source. Corresponds to the JSON property description

Returns:

  • (String)


2382
2383
2384
# File 'generated/google/apis/books_v1/classes.rb', line 2382

def description
  @description
end

#extra_descriptionString

Extra text about the source of the review. Corresponds to the JSON property extraDescription

Returns:

  • (String)


2387
2388
2389
# File 'generated/google/apis/books_v1/classes.rb', line 2387

def extra_description
  @extra_description
end

#urlString

URL of the source of the review. Corresponds to the JSON property url

Returns:

  • (String)


2392
2393
2394
# File 'generated/google/apis/books_v1/classes.rb', line 2392

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2399
2400
2401
2402
2403
# File 'generated/google/apis/books_v1/classes.rb', line 2399

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