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
Defined Under Namespace
Classes: SeriesSubscriptionReleaseInfo
Instance Attribute Summary collapse
-
#banner_image_url ⇒ String
Corresponds to the JSON property
bannerImageUrl
. -
#eligible_for_subscription ⇒ Boolean
(also: #eligible_for_subscription?)
Corresponds to the JSON property
eligibleForSubscription
. -
#image_url ⇒ String
Corresponds to the JSON property
imageUrl
. -
#is_complete ⇒ Boolean
(also: #is_complete?)
Corresponds to the JSON property
isComplete
. -
#series_format_type ⇒ String
Corresponds to the JSON property
seriesFormatType
. -
#series_id ⇒ String
Corresponds to the JSON property
seriesId
. -
#series_subscription_release_info ⇒ Google::Apis::BooksV1::Series::Series::SeriesSubscriptionReleaseInfo
Corresponds to the JSON property
seriesSubscriptionReleaseInfo
. -
#series_type ⇒ String
Corresponds to the JSON property
seriesType
. -
#subscription_id ⇒ String
Corresponds to the JSON property
subscriptionId
. -
#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.
Constructor Details
#initialize(**args) ⇒ Series
Returns a new instance of Series.
2639 2640 2641 |
# File 'generated/google/apis/books_v1/classes.rb', line 2639 def initialize(**args) update!(**args) end |
Instance Attribute Details
#banner_image_url ⇒ String
Corresponds to the JSON property bannerImageUrl
2590 2591 2592 |
# File 'generated/google/apis/books_v1/classes.rb', line 2590 def @banner_image_url end |
#eligible_for_subscription ⇒ Boolean Also known as: eligible_for_subscription?
Corresponds to the JSON property eligibleForSubscription
2595 2596 2597 |
# File 'generated/google/apis/books_v1/classes.rb', line 2595 def eligible_for_subscription @eligible_for_subscription end |
#image_url ⇒ String
Corresponds to the JSON property imageUrl
2601 2602 2603 |
# File 'generated/google/apis/books_v1/classes.rb', line 2601 def image_url @image_url end |
#is_complete ⇒ Boolean Also known as: is_complete?
Corresponds to the JSON property isComplete
2606 2607 2608 |
# File 'generated/google/apis/books_v1/classes.rb', line 2606 def is_complete @is_complete end |
#series_format_type ⇒ String
Corresponds to the JSON property seriesFormatType
2612 2613 2614 |
# File 'generated/google/apis/books_v1/classes.rb', line 2612 def series_format_type @series_format_type end |
#series_id ⇒ String
Corresponds to the JSON property seriesId
2617 2618 2619 |
# File 'generated/google/apis/books_v1/classes.rb', line 2617 def series_id @series_id end |
#series_subscription_release_info ⇒ Google::Apis::BooksV1::Series::Series::SeriesSubscriptionReleaseInfo
Corresponds to the JSON property seriesSubscriptionReleaseInfo
2622 2623 2624 |
# File 'generated/google/apis/books_v1/classes.rb', line 2622 def series_subscription_release_info @series_subscription_release_info end |
#series_type ⇒ String
Corresponds to the JSON property seriesType
2627 2628 2629 |
# File 'generated/google/apis/books_v1/classes.rb', line 2627 def series_type @series_type end |
#subscription_id ⇒ String
Corresponds to the JSON property subscriptionId
2632 2633 2634 |
# File 'generated/google/apis/books_v1/classes.rb', line 2632 def subscription_id @subscription_id end |
#title ⇒ String
Corresponds to the JSON property title
2637 2638 2639 |
# File 'generated/google/apis/books_v1/classes.rb', line 2637 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 |
# File 'generated/google/apis/books_v1/classes.rb', line 2644 def update!(**args) @banner_image_url = args[:banner_image_url] if args.key?(:banner_image_url) @eligible_for_subscription = args[:eligible_for_subscription] if args.key?(:eligible_for_subscription) @image_url = args[:image_url] if args.key?(:image_url) @is_complete = args[:is_complete] if args.key?(:is_complete) @series_format_type = args[:series_format_type] if args.key?(:series_format_type) @series_id = args[:series_id] if args.key?(:series_id) @series_subscription_release_info = args[:series_subscription_release_info] if args.key?(:series_subscription_release_info) @series_type = args[:series_type] if args.key?(:series_type) @subscription_id = args[:subscription_id] if args.key?(:subscription_id) @title = args[:title] if args.key?(:title) end |