Class: Google::Apis::BooksV1::Volume

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

Defined Under Namespace

Classes: AccessInfo, LayerInfo, RecommendedInfo, SaleInfo, SearchInfo, UserInfo, VolumeInfo

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

Returns a new instance of Volume.



2875
2876
2877
# File 'generated/google/apis/books_v1/classes.rb', line 2875

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

Instance Attribute Details

#access_infoGoogle::Apis::BooksV1::Volume::AccessInfo

Any information about a volume related to reading or obtaining that volume text. This information can depend on country (books may be public domain in one country but not in another, e.g.). Corresponds to the JSON property accessInfo



2819
2820
2821
# File 'generated/google/apis/books_v1/classes.rb', line 2819

def access_info
  @access_info
end

#etagString

Opaque identifier for a specific version of a volume resource. (In LITE projection) Corresponds to the JSON property etag

Returns:

  • (String)


2825
2826
2827
# File 'generated/google/apis/books_v1/classes.rb', line 2825

def etag
  @etag
end

#idString

Unique identifier for a volume. (In LITE projection.) Corresponds to the JSON property id

Returns:

  • (String)


2830
2831
2832
# File 'generated/google/apis/books_v1/classes.rb', line 2830

def id
  @id
end

#kindString

Resource type for a volume. (In LITE projection.) Corresponds to the JSON property kind

Returns:

  • (String)


2835
2836
2837
# File 'generated/google/apis/books_v1/classes.rb', line 2835

def kind
  @kind
end

#layer_infoGoogle::Apis::BooksV1::Volume::LayerInfo

What layers exist in this volume and high level information about them. Corresponds to the JSON property layerInfo



2840
2841
2842
# File 'generated/google/apis/books_v1/classes.rb', line 2840

def layer_info
  @layer_info
end

Recommendation related information for this volume. Corresponds to the JSON property recommendedInfo



2845
2846
2847
# File 'generated/google/apis/books_v1/classes.rb', line 2845

def recommended_info
  @recommended_info
end

#sale_infoGoogle::Apis::BooksV1::Volume::SaleInfo

Any information about a volume related to the eBookstore and/or purchaseability. This information can depend on the country where the request originates from (i.e. books may not be for sale in certain countries). Corresponds to the JSON property saleInfo



2852
2853
2854
# File 'generated/google/apis/books_v1/classes.rb', line 2852

def sale_info
  @sale_info
end

#search_infoGoogle::Apis::BooksV1::Volume::SearchInfo

Search result information related to this volume. Corresponds to the JSON property searchInfo



2857
2858
2859
# File 'generated/google/apis/books_v1/classes.rb', line 2857

def search_info
  @search_info
end

URL to this resource. (In LITE projection.) Corresponds to the JSON property selfLink

Returns:

  • (String)


2862
2863
2864
# File 'generated/google/apis/books_v1/classes.rb', line 2862

def self_link
  @self_link
end

#user_infoGoogle::Apis::BooksV1::Volume::UserInfo

User specific information related to this volume. (e.g. page this user last read or whether they purchased this book) Corresponds to the JSON property userInfo



2868
2869
2870
# File 'generated/google/apis/books_v1/classes.rb', line 2868

def 
  @user_info
end

#volume_infoGoogle::Apis::BooksV1::Volume::VolumeInfo

General volume information. Corresponds to the JSON property volumeInfo



2873
2874
2875
# File 'generated/google/apis/books_v1/classes.rb', line 2873

def volume_info
  @volume_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
# File 'generated/google/apis/books_v1/classes.rb', line 2880

def update!(**args)
  @access_info = args[:access_info] if args.key?(:access_info)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @layer_info = args[:layer_info] if args.key?(:layer_info)
  @recommended_info = args[:recommended_info] if args.key?(:recommended_info)
  @sale_info = args[:sale_info] if args.key?(:sale_info)
  @search_info = args[:search_info] if args.key?(:search_info)
  @self_link = args[:self_link] if args.key?(:self_link)
  @user_info = args[:user_info] if args.key?(:user_info)
  @volume_info = args[:volume_info] if args.key?(:volume_info)
end