Class: Google::Apis::BooksV1::Category::Item
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::Category::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
-
#badge_url ⇒ String
Corresponds to the JSON property
badgeUrl
. -
#category_id ⇒ String
Corresponds to the JSON property
categoryId
. -
#name ⇒ String
Corresponds to the JSON property
name
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Item
constructor
A new instance of Item.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Item
Returns a new instance of Item.
643 644 645 |
# File 'generated/google/apis/books_v1/classes.rb', line 643 def initialize(**args) update!(**args) end |
Instance Attribute Details
#badge_url ⇒ String
Corresponds to the JSON property badgeUrl
631 632 633 |
# File 'generated/google/apis/books_v1/classes.rb', line 631 def badge_url @badge_url end |
#category_id ⇒ String
Corresponds to the JSON property categoryId
636 637 638 |
# File 'generated/google/apis/books_v1/classes.rb', line 636 def category_id @category_id end |
#name ⇒ String
Corresponds to the JSON property name
641 642 643 |
# File 'generated/google/apis/books_v1/classes.rb', line 641 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
648 649 650 651 652 |
# File 'generated/google/apis/books_v1/classes.rb', line 648 def update!(**args) @badge_url = args[:badge_url] if args.key?(:badge_url) @category_id = args[:category_id] if args.key?(:category_id) @name = args[:name] if args.key?(:name) end |