Class: Google::Apis::BooksV1::Offers::Item::Item

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Item

Returns a new instance of Item.



2328
2329
2330
# File 'generated/google/apis/books_v1/classes.rb', line 2328

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

Instance Attribute Details

#authorString

Corresponds to the JSON property author

Returns:

  • (String)


2301
2302
2303
# File 'generated/google/apis/books_v1/classes.rb', line 2301

def author
  @author
end

Corresponds to the JSON property canonicalVolumeLink

Returns:

  • (String)


2306
2307
2308
# File 'generated/google/apis/books_v1/classes.rb', line 2306

def canonical_volume_link
  @canonical_volume_link
end

#cover_urlString

Corresponds to the JSON property coverUrl

Returns:

  • (String)


2311
2312
2313
# File 'generated/google/apis/books_v1/classes.rb', line 2311

def cover_url
  @cover_url
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


2316
2317
2318
# File 'generated/google/apis/books_v1/classes.rb', line 2316

def description
  @description
end

#titleString

Corresponds to the JSON property title

Returns:

  • (String)


2321
2322
2323
# File 'generated/google/apis/books_v1/classes.rb', line 2321

def title
  @title
end

#volume_idString

Corresponds to the JSON property volumeId

Returns:

  • (String)


2326
2327
2328
# File 'generated/google/apis/books_v1/classes.rb', line 2326

def volume_id
  @volume_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2333
2334
2335
2336
2337
2338
2339
2340
# File 'generated/google/apis/books_v1/classes.rb', line 2333

def update!(**args)
  @author = args[:author] if args.key?(:author)
  @canonical_volume_link = args[:canonical_volume_link] if args.key?(:canonical_volume_link)
  @cover_url = args[:cover_url] if args.key?(:cover_url)
  @description = args[:description] if args.key?(:description)
  @title = args[:title] if args.key?(:title)
  @volume_id = args[:volume_id] if args.key?(:volume_id)
end