Class: Google::Apis::BooksV1::Volume::SaleInfo::Offer::RentalDuration

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

The rental duration (for rental offers only).

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

Returns a new instance of RentalDuration.



3317
3318
3319
# File 'generated/google/apis/books_v1/classes.rb', line 3317

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

Instance Attribute Details

#countFloat

Corresponds to the JSON property count

Returns:

  • (Float)


3310
3311
3312
# File 'generated/google/apis/books_v1/classes.rb', line 3310

def count
  @count
end

#unitString

Corresponds to the JSON property unit

Returns:

  • (String)


3315
3316
3317
# File 'generated/google/apis/books_v1/classes.rb', line 3315

def unit
  @unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3322
3323
3324
3325
# File 'generated/google/apis/books_v1/classes.rb', line 3322

def update!(**args)
  @count = args[:count] if args.key?(:count)
  @unit = args[:unit] if args.key?(:unit)
end