Class: Google::Apis::BooksV1::Series::Series
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Series::Series
- 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
Instance Attribute Summary collapse
-
#banner_image_url ⇒ String
Corresponds to the JSON property
bannerImageUrl
. -
#image_url ⇒ String
Corresponds to the JSON property
imageUrl
. -
#series_id ⇒ String
Corresponds to the JSON property
seriesId
. -
#series_type ⇒ String
Corresponds to the JSON property
seriesType
. -
#title ⇒ String
Corresponds to the JSON property
title
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Series
constructor
A new instance of Series.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Series
Returns a new instance of Series
2467 2468 2469 |
# File 'generated/google/apis/books_v1/classes.rb', line 2467 def initialize(**args) update!(**args) end |
Instance Attribute Details
#banner_image_url ⇒ String
Corresponds to the JSON property bannerImageUrl
2445 2446 2447 |
# File 'generated/google/apis/books_v1/classes.rb', line 2445 def @banner_image_url end |
#image_url ⇒ String
Corresponds to the JSON property imageUrl
2450 2451 2452 |
# File 'generated/google/apis/books_v1/classes.rb', line 2450 def image_url @image_url end |
#series_id ⇒ String
Corresponds to the JSON property seriesId
2455 2456 2457 |
# File 'generated/google/apis/books_v1/classes.rb', line 2455 def series_id @series_id end |
#series_type ⇒ String
Corresponds to the JSON property seriesType
2460 2461 2462 |
# File 'generated/google/apis/books_v1/classes.rb', line 2460 def series_type @series_type end |
#title ⇒ String
Corresponds to the JSON property title
2465 2466 2467 |
# File 'generated/google/apis/books_v1/classes.rb', line 2465 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2472 2473 2474 2475 2476 2477 2478 |
# File 'generated/google/apis/books_v1/classes.rb', line 2472 def update!(**args) @banner_image_url = args[:banner_image_url] if args.key?(:banner_image_url) @image_url = args[:image_url] if args.key?(:image_url) @series_id = args[:series_id] if args.key?(:series_id) @series_type = args[:series_type] if args.key?(:series_type) @title = args[:title] if args.key?(:title) end |