Class: Google::Apis::BooksV1::Volume::VolumeInfo::ImageLinks

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 list of image links for all the sizes that are available. (In LITE projection.)

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

Returns a new instance of ImageLinks



3890
3891
3892
# File 'generated/google/apis/books_v1/classes.rb', line 3890

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

Instance Attribute Details

#extra_largeString

Image link for extra large size (width of ~1280 pixels). (In LITE projection) Corresponds to the JSON property extraLarge

Returns:

  • (String)


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

def extra_large
  @extra_large
end

#largeString

Image link for large size (width of ~800 pixels). (In LITE projection) Corresponds to the JSON property large

Returns:

  • (String)


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

def large
  @large
end

#mediumString

Image link for medium size (width of ~575 pixels). (In LITE projection) Corresponds to the JSON property medium

Returns:

  • (String)


3873
3874
3875
# File 'generated/google/apis/books_v1/classes.rb', line 3873

def medium
  @medium
end

#smallString

Image link for small size (width of ~300 pixels). (In LITE projection) Corresponds to the JSON property small

Returns:

  • (String)


3878
3879
3880
# File 'generated/google/apis/books_v1/classes.rb', line 3878

def small
  @small
end

#small_thumbnailString

Image link for small thumbnail size (width of ~80 pixels). (In LITE projection) Corresponds to the JSON property smallThumbnail

Returns:

  • (String)


3883
3884
3885
# File 'generated/google/apis/books_v1/classes.rb', line 3883

def small_thumbnail
  @small_thumbnail
end

#thumbnailString

Image link for thumbnail size (width of ~128 pixels). (In LITE projection) Corresponds to the JSON property thumbnail

Returns:

  • (String)


3888
3889
3890
# File 'generated/google/apis/books_v1/classes.rb', line 3888

def thumbnail
  @thumbnail
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3895
3896
3897
3898
3899
3900
3901
3902
# File 'generated/google/apis/books_v1/classes.rb', line 3895

def update!(**args)
  @extra_large = args[:extra_large] if args.key?(:extra_large)
  @large = args[:large] if args.key?(:large)
  @medium = args[:medium] if args.key?(:medium)
  @small = args[:small] if args.key?(:small)
  @small_thumbnail = args[:small_thumbnail] if args.key?(:small_thumbnail)
  @thumbnail = args[:thumbnail] if args.key?(:thumbnail)
end