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
2549 2550 2551 |
# File 'generated/google/apis/books_v1/classes.rb', line 2549 def initialize(**args) update!(**args) end |
Instance Attribute Details
#banner_image_url ⇒ String
Corresponds to the JSON property bannerImageUrl
2527 2528 2529 |
# File 'generated/google/apis/books_v1/classes.rb', line 2527 def @banner_image_url end |
#image_url ⇒ String
Corresponds to the JSON property imageUrl
2532 2533 2534 |
# File 'generated/google/apis/books_v1/classes.rb', line 2532 def image_url @image_url end |
#series_id ⇒ String
Corresponds to the JSON property seriesId
2537 2538 2539 |
# File 'generated/google/apis/books_v1/classes.rb', line 2537 def series_id @series_id end |
#series_type ⇒ String
Corresponds to the JSON property seriesType
2542 2543 2544 |
# File 'generated/google/apis/books_v1/classes.rb', line 2542 def series_type @series_type end |
#title ⇒ String
Corresponds to the JSON property title
2547 2548 2549 |
# File 'generated/google/apis/books_v1/classes.rb', line 2547 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2554 2555 2556 2557 2558 2559 2560 |
# File 'generated/google/apis/books_v1/classes.rb', line 2554 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 |