Class: Google::Apis::BooksV1::Volume::VolumeInfo::PanelizationSummary

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

A top-level summary of the panelization info in this volume.

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

Returns a new instance of PanelizationSummary.



3792
3793
3794
# File 'generated/google/apis/books_v1/classes.rb', line 3792

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

Instance Attribute Details

#contains_epub_bubblesBoolean Also known as: contains_epub_bubbles?

Corresponds to the JSON property containsEpubBubbles

Returns:

  • (Boolean)


3773
3774
3775
# File 'generated/google/apis/books_v1/classes.rb', line 3773

def contains_epub_bubbles
  @contains_epub_bubbles
end

#contains_image_bubblesBoolean Also known as: contains_image_bubbles?

Corresponds to the JSON property containsImageBubbles

Returns:

  • (Boolean)


3779
3780
3781
# File 'generated/google/apis/books_v1/classes.rb', line 3779

def contains_image_bubbles
  @contains_image_bubbles
end

#epub_bubble_versionString

Corresponds to the JSON property epubBubbleVersion

Returns:

  • (String)


3785
3786
3787
# File 'generated/google/apis/books_v1/classes.rb', line 3785

def epub_bubble_version
  @epub_bubble_version
end

#image_bubble_versionString

Corresponds to the JSON property imageBubbleVersion

Returns:

  • (String)


3790
3791
3792
# File 'generated/google/apis/books_v1/classes.rb', line 3790

def image_bubble_version
  @image_bubble_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3797
3798
3799
3800
3801
3802
# File 'generated/google/apis/books_v1/classes.rb', line 3797

def update!(**args)
  @contains_epub_bubbles = args[:contains_epub_bubbles] if args.key?(:contains_epub_bubbles)
  @contains_image_bubbles = args[:contains_image_bubbles] if args.key?(:contains_image_bubbles)
  @epub_bubble_version = args[:epub_bubble_version] if args.key?(:epub_bubble_version)
  @image_bubble_version = args[:image_bubble_version] if args.key?(:image_bubble_version)
end