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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Item
Returns a new instance of Item.
711 712 713 |
# File 'generated/google/apis/books_v1/classes.rb', line 711 def initialize(**args) update!(**args) end |
Instance Attribute Details
#badge_url ⇒ String
Corresponds to the JSON property badgeUrl
699 700 701 |
# File 'generated/google/apis/books_v1/classes.rb', line 699 def badge_url @badge_url end |
#category_id ⇒ String
Corresponds to the JSON property categoryId
704 705 706 |
# File 'generated/google/apis/books_v1/classes.rb', line 704 def category_id @category_id end |
#name ⇒ String
Corresponds to the JSON property name
709 710 711 |
# File 'generated/google/apis/books_v1/classes.rb', line 709 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
716 717 718 719 720 |
# File 'generated/google/apis/books_v1/classes.rb', line 716 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 |