Class: Google::Apis::BooksV1::Volume::VolumeInfo::Dimensions

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

Physical dimensions of 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) ⇒ Dimensions

Returns a new instance of Dimensions.



3869
3870
3871
# File 'generated/google/apis/books_v1/classes.rb', line 3869

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

Instance Attribute Details

#heightString

Height or length of this volume (in cm). Corresponds to the JSON property height

Returns:

  • (String)


3857
3858
3859
# File 'generated/google/apis/books_v1/classes.rb', line 3857

def height
  @height
end

#thicknessString

Thickness of this volume (in cm). Corresponds to the JSON property thickness

Returns:

  • (String)


3862
3863
3864
# File 'generated/google/apis/books_v1/classes.rb', line 3862

def thickness
  @thickness
end

#widthString

Width of this volume (in cm). Corresponds to the JSON property width

Returns:

  • (String)


3867
3868
3869
# File 'generated/google/apis/books_v1/classes.rb', line 3867

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3874
3875
3876
3877
3878
# File 'generated/google/apis/books_v1/classes.rb', line 3874

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