Class: Google::Apis::BooksV1::Volume::VolumeInfo::PanelizationSummary
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Volume::VolumeInfo::PanelizationSummary
- 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
-
#contains_epub_bubbles ⇒ Boolean
(also: #contains_epub_bubbles?)
Corresponds to the JSON property
containsEpubBubbles
. -
#contains_image_bubbles ⇒ Boolean
(also: #contains_image_bubbles?)
Corresponds to the JSON property
containsImageBubbles
. -
#epub_bubble_version ⇒ String
Corresponds to the JSON property
epubBubbleVersion
. -
#image_bubble_version ⇒ String
Corresponds to the JSON property
imageBubbleVersion
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PanelizationSummary
constructor
A new instance of PanelizationSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PanelizationSummary
Returns a new instance of PanelizationSummary.
4168 4169 4170 |
# File 'generated/google/apis/books_v1/classes.rb', line 4168 def initialize(**args) update!(**args) end |
Instance Attribute Details
#contains_epub_bubbles ⇒ Boolean Also known as: contains_epub_bubbles?
Corresponds to the JSON property containsEpubBubbles
4149 4150 4151 |
# File 'generated/google/apis/books_v1/classes.rb', line 4149 def contains_epub_bubbles @contains_epub_bubbles end |
#contains_image_bubbles ⇒ Boolean Also known as: contains_image_bubbles?
Corresponds to the JSON property containsImageBubbles
4155 4156 4157 |
# File 'generated/google/apis/books_v1/classes.rb', line 4155 def contains_image_bubbles @contains_image_bubbles end |
#epub_bubble_version ⇒ String
Corresponds to the JSON property epubBubbleVersion
4161 4162 4163 |
# File 'generated/google/apis/books_v1/classes.rb', line 4161 def epub_bubble_version @epub_bubble_version end |
#image_bubble_version ⇒ String
Corresponds to the JSON property imageBubbleVersion
4166 4167 4168 |
# File 'generated/google/apis/books_v1/classes.rb', line 4166 def image_bubble_version @image_bubble_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4173 4174 4175 4176 4177 4178 |
# File 'generated/google/apis/books_v1/classes.rb', line 4173 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 |