Class: Google::Apis::BooksV1::Series::Series

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

Defined Under Namespace

Classes: SeriesSubscriptionReleaseInfo

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) ⇒ Series

Returns a new instance of Series.



2613
2614
2615
# File 'generated/google/apis/books_v1/classes.rb', line 2613

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

Instance Attribute Details

Corresponds to the JSON property bannerImageUrl

Returns:

  • (String)


2564
2565
2566
# File 'generated/google/apis/books_v1/classes.rb', line 2564

def banner_image_url
  @banner_image_url
end

#eligible_for_subscriptionBoolean Also known as: eligible_for_subscription?

Corresponds to the JSON property eligibleForSubscription

Returns:

  • (Boolean)


2569
2570
2571
# File 'generated/google/apis/books_v1/classes.rb', line 2569

def eligible_for_subscription
  @eligible_for_subscription
end

#image_urlString

Corresponds to the JSON property imageUrl

Returns:

  • (String)


2575
2576
2577
# File 'generated/google/apis/books_v1/classes.rb', line 2575

def image_url
  @image_url
end

#is_completeBoolean Also known as: is_complete?

Corresponds to the JSON property isComplete

Returns:

  • (Boolean)


2580
2581
2582
# File 'generated/google/apis/books_v1/classes.rb', line 2580

def is_complete
  @is_complete
end

#series_format_typeString

Corresponds to the JSON property seriesFormatType

Returns:

  • (String)


2586
2587
2588
# File 'generated/google/apis/books_v1/classes.rb', line 2586

def series_format_type
  @series_format_type
end

#series_idString

Corresponds to the JSON property seriesId

Returns:

  • (String)


2591
2592
2593
# File 'generated/google/apis/books_v1/classes.rb', line 2591

def series_id
  @series_id
end

#series_subscription_release_infoGoogle::Apis::BooksV1::Series::Series::SeriesSubscriptionReleaseInfo

Corresponds to the JSON property seriesSubscriptionReleaseInfo



2596
2597
2598
# File 'generated/google/apis/books_v1/classes.rb', line 2596

def series_subscription_release_info
  @series_subscription_release_info
end

#series_typeString

Corresponds to the JSON property seriesType

Returns:

  • (String)


2601
2602
2603
# File 'generated/google/apis/books_v1/classes.rb', line 2601

def series_type
  @series_type
end

#subscription_idString

Corresponds to the JSON property subscriptionId

Returns:

  • (String)


2606
2607
2608
# File 'generated/google/apis/books_v1/classes.rb', line 2606

def subscription_id
  @subscription_id
end

#titleString

Corresponds to the JSON property title

Returns:

  • (String)


2611
2612
2613
# File 'generated/google/apis/books_v1/classes.rb', line 2611

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
# File 'generated/google/apis/books_v1/classes.rb', line 2618

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