class Google::Apis::BooksV1::Volume::VolumeInfo::Dimensions
Physical dimensions of this volume.
Attributes
height[RW]
Height or length of this volume (in cm). Corresponds to the JSON property `height` @return [String]
thickness[RW]
Thickness of this volume (in cm). Corresponds to the JSON property `thickness` @return [String]
width[RW]
Width of this volume (in cm). Corresponds to the JSON property `width` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/books_v1/classes.rb, line 3640 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/books_v1/classes.rb, line 3645 def update!(**args) @height = args[:height] if args.key?(:height) @thickness = args[:thickness] if args.key?(:thickness) @width = args[:width] if args.key?(:width) end