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 lib/google/apis/books_v1/classes.rb, line 4055
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/books_v1/classes.rb, line 4060
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