Class: Google::Apis::BooksV1::LayerSummaries

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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LayerSummaries

Returns a new instance of LayerSummaries.



1815
1816
1817
# File 'generated/google/apis/books_v1/classes.rb', line 1815

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

Instance Attribute Details

#itemsArray<Google::Apis::BooksV1::LayerSummary>

A list of layer summary items. Corresponds to the JSON property items



1803
1804
1805
# File 'generated/google/apis/books_v1/classes.rb', line 1803

def items
  @items
end

#kindString

Resource type. Corresponds to the JSON property kind

Returns:

  • (String)


1808
1809
1810
# File 'generated/google/apis/books_v1/classes.rb', line 1808

def kind
  @kind
end

#total_itemsFixnum

The total number of layer summaries found. Corresponds to the JSON property totalItems

Returns:

  • (Fixnum)


1813
1814
1815
# File 'generated/google/apis/books_v1/classes.rb', line 1813

def total_items
  @total_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1820
1821
1822
1823
1824
# File 'generated/google/apis/books_v1/classes.rb', line 1820

def update!(**args)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @total_items = args[:total_items] if args.key?(:total_items)
end