Class: Google::Apis::BooksV1::Offers::Item::Item
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Offers::Item::Item
- 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
-
#author ⇒ String
Corresponds to the JSON property
author
. -
#canonical_volume_link ⇒ String
Corresponds to the JSON property
canonicalVolumeLink
. -
#cover_url ⇒ String
Corresponds to the JSON property
coverUrl
. -
#description ⇒ String
Corresponds to the JSON property
description
. -
#title ⇒ String
Corresponds to the JSON property
title
. -
#volume_id ⇒ String
Corresponds to the JSON property
volumeId
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Item
constructor
A new instance of Item.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Item
Returns a new instance of Item
2183 2184 2185 |
# File 'generated/google/apis/books_v1/classes.rb', line 2183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#author ⇒ String
Corresponds to the JSON property author
2156 2157 2158 |
# File 'generated/google/apis/books_v1/classes.rb', line 2156 def @author end |
#canonical_volume_link ⇒ String
Corresponds to the JSON property canonicalVolumeLink
2161 2162 2163 |
# File 'generated/google/apis/books_v1/classes.rb', line 2161 def canonical_volume_link @canonical_volume_link end |
#cover_url ⇒ String
Corresponds to the JSON property coverUrl
2166 2167 2168 |
# File 'generated/google/apis/books_v1/classes.rb', line 2166 def cover_url @cover_url end |
#description ⇒ String
Corresponds to the JSON property description
2171 2172 2173 |
# File 'generated/google/apis/books_v1/classes.rb', line 2171 def description @description end |
#title ⇒ String
Corresponds to the JSON property title
2176 2177 2178 |
# File 'generated/google/apis/books_v1/classes.rb', line 2176 def title @title end |
#volume_id ⇒ String
Corresponds to the JSON property volumeId
2181 2182 2183 |
# File 'generated/google/apis/books_v1/classes.rb', line 2181 def volume_id @volume_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2188 2189 2190 2191 2192 2193 2194 2195 |
# File 'generated/google/apis/books_v1/classes.rb', line 2188 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 |