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

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

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).

Defined Under Namespace

Classes: ListPrice, Offer, RetailPrice

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

Returns a new instance of SaleInfo



3174
3175
3176
# File 'generated/google/apis/books_v1/classes.rb', line 3174

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

Instance Attribute Details

URL to purchase this volume on the Google Books site. (In LITE projection) Corresponds to the JSON property buyLink

Returns:

  • (String)


3131
3132
3133
# File 'generated/google/apis/books_v1/classes.rb', line 3131

def buy_link
  @buy_link
end

#countryString

The two-letter ISO_3166-1 country code for which this sale information is valid. (In LITE projection.) Corresponds to the JSON property country

Returns:

  • (String)


3137
3138
3139
# File 'generated/google/apis/books_v1/classes.rb', line 3137

def country
  @country
end

#is_ebookBoolean Also known as: is_ebook?

Whether or not this volume is an eBook (can be added to the My eBooks shelf). Corresponds to the JSON property isEbook

Returns:

  • (Boolean)


3142
3143
3144
# File 'generated/google/apis/books_v1/classes.rb', line 3142

def is_ebook
  @is_ebook
end

#list_priceGoogle::Apis::BooksV1::Volume::SaleInfo::ListPrice

Suggested retail price. (In LITE projection.) Corresponds to the JSON property listPrice



3148
3149
3150
# File 'generated/google/apis/books_v1/classes.rb', line 3148

def list_price
  @list_price
end

#offersArray<Google::Apis::BooksV1::Volume::SaleInfo::Offer>

Offers available for this volume (sales and rentals). Corresponds to the JSON property offers



3153
3154
3155
# File 'generated/google/apis/books_v1/classes.rb', line 3153

def offers
  @offers
end

#on_sale_dateDateTime

The date on which this book is available for sale. Corresponds to the JSON property onSaleDate

Returns:

  • (DateTime)


3158
3159
3160
# File 'generated/google/apis/books_v1/classes.rb', line 3158

def on_sale_date
  @on_sale_date
end

#retail_priceGoogle::Apis::BooksV1::Volume::SaleInfo::RetailPrice

The actual selling price of the book. This is the same as the suggested retail or list price unless there are offers or discounts on this volume. (In LITE projection.) Corresponds to the JSON property retailPrice



3165
3166
3167
# File 'generated/google/apis/books_v1/classes.rb', line 3165

def retail_price
  @retail_price
end

#saleabilityString

Whether or not this book is available for sale or offered for free in the Google eBookstore for the country listed above. Possible values are FOR_SALE, FOR_RENTAL_ONLY, FOR_SALE_AND_RENTAL, FREE, NOT_FOR_SALE, or FOR_PREORDER. Corresponds to the JSON property saleability

Returns:

  • (String)


3172
3173
3174
# File 'generated/google/apis/books_v1/classes.rb', line 3172

def saleability
  @saleability
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
# File 'generated/google/apis/books_v1/classes.rb', line 3179

def update!(**args)
  @buy_link = args[:buy_link] if args.key?(:buy_link)
  @country = args[:country] if args.key?(:country)
  @is_ebook = args[:is_ebook] if args.key?(:is_ebook)
  @list_price = args[:list_price] if args.key?(:list_price)
  @offers = args[:offers] if args.key?(:offers)
  @on_sale_date = args[:on_sale_date] if args.key?(:on_sale_date)
  @retail_price = args[:retail_price] if args.key?(:retail_price)
  @saleability = args[:saleability] if args.key?(:saleability)
end