Class: Google::Apis::BooksV1::Offers::Item
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Offers::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
Defined Under Namespace
Classes: Item
Instance Attribute Summary collapse
-
#art_url ⇒ String
Corresponds to the JSON property
artUrl
. -
#gservices_key ⇒ String
Corresponds to the JSON property
gservicesKey
. -
#id ⇒ String
Corresponds to the JSON property
id
. -
#items ⇒ Array<Google::Apis::BooksV1::Offers::Item::Item>
Corresponds to the JSON property
items
.
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
2206 2207 2208 |
# File 'generated/google/apis/books_v1/classes.rb', line 2206 def initialize(**args) update!(**args) end |
Instance Attribute Details
#art_url ⇒ String
Corresponds to the JSON property artUrl
2189 2190 2191 |
# File 'generated/google/apis/books_v1/classes.rb', line 2189 def art_url @art_url end |
#gservices_key ⇒ String
Corresponds to the JSON property gservicesKey
2194 2195 2196 |
# File 'generated/google/apis/books_v1/classes.rb', line 2194 def gservices_key @gservices_key end |
#id ⇒ String
Corresponds to the JSON property id
2199 2200 2201 |
# File 'generated/google/apis/books_v1/classes.rb', line 2199 def id @id end |
#items ⇒ Array<Google::Apis::BooksV1::Offers::Item::Item>
Corresponds to the JSON property items
2204 2205 2206 |
# File 'generated/google/apis/books_v1/classes.rb', line 2204 def items @items end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2211 2212 2213 2214 2215 2216 |
# File 'generated/google/apis/books_v1/classes.rb', line 2211 def update!(**args) @art_url = args[:art_url] if args.key?(:art_url) @gservices_key = args[:gservices_key] if args.key?(:gservices_key) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) end |