Class: Google::Apis::BooksV1::LayerSummary

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) ⇒ LayerSummary

Returns a new instance of LayerSummary.



1899
1900
1901
# File 'generated/google/apis/books_v1/classes.rb', line 1899

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

Instance Attribute Details

#annotation_countFixnum

The number of annotations for this layer. Corresponds to the JSON property annotationCount

Returns:

  • (Fixnum)


1834
1835
1836
# File 'generated/google/apis/books_v1/classes.rb', line 1834

def annotation_count
  @annotation_count
end

#annotation_typesArray<String>

The list of annotation types contained for this layer. Corresponds to the JSON property annotationTypes

Returns:

  • (Array<String>)


1839
1840
1841
# File 'generated/google/apis/books_v1/classes.rb', line 1839

def annotation_types
  @annotation_types
end

Link to get data for this annotation. Corresponds to the JSON property annotationsDataLink

Returns:

  • (String)


1844
1845
1846
# File 'generated/google/apis/books_v1/classes.rb', line 1844

def annotations_data_link
  @annotations_data_link
end

The link to get the annotations for this layer. Corresponds to the JSON property annotationsLink

Returns:

  • (String)


1849
1850
1851
# File 'generated/google/apis/books_v1/classes.rb', line 1849

def annotations_link
  @annotations_link
end

#content_versionString

The content version this resource is for. Corresponds to the JSON property contentVersion

Returns:

  • (String)


1854
1855
1856
# File 'generated/google/apis/books_v1/classes.rb', line 1854

def content_version
  @content_version
end

#data_countFixnum

The number of data items for this layer. Corresponds to the JSON property dataCount

Returns:

  • (Fixnum)


1859
1860
1861
# File 'generated/google/apis/books_v1/classes.rb', line 1859

def data_count
  @data_count
end

#idString

Unique id of this layer summary. Corresponds to the JSON property id

Returns:

  • (String)


1864
1865
1866
# File 'generated/google/apis/books_v1/classes.rb', line 1864

def id
  @id
end

#kindString

Resource Type Corresponds to the JSON property kind

Returns:

  • (String)


1869
1870
1871
# File 'generated/google/apis/books_v1/classes.rb', line 1869

def kind
  @kind
end

#layer_idString

The layer id for this summary. Corresponds to the JSON property layerId

Returns:

  • (String)


1874
1875
1876
# File 'generated/google/apis/books_v1/classes.rb', line 1874

def layer_id
  @layer_id
end

URL to this resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


1879
1880
1881
# File 'generated/google/apis/books_v1/classes.rb', line 1879

def self_link
  @self_link
end

#updatedDateTime

Timestamp for the last time an item in this layer was updated. (RFC 3339 UTC date-time format). Corresponds to the JSON property updated

Returns:

  • (DateTime)


1885
1886
1887
# File 'generated/google/apis/books_v1/classes.rb', line 1885

def updated
  @updated
end

#volume_annotations_versionString

The current version of this layer's volume annotations. Note that this version applies only to the data in the books.layers.volumeAnnotations.* responses. The actual annotation data is versioned separately. Corresponds to the JSON property volumeAnnotationsVersion

Returns:

  • (String)


1892
1893
1894
# File 'generated/google/apis/books_v1/classes.rb', line 1892

def volume_annotations_version
  @volume_annotations_version
end

#volume_idString

The volume id this resource is for. Corresponds to the JSON property volumeId

Returns:

  • (String)


1897
1898
1899
# File 'generated/google/apis/books_v1/classes.rb', line 1897

def volume_id
  @volume_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
# File 'generated/google/apis/books_v1/classes.rb', line 1904

def update!(**args)
  @annotation_count = args[:annotation_count] if args.key?(:annotation_count)
  @annotation_types = args[:annotation_types] if args.key?(:annotation_types)
  @annotations_data_link = args[:annotations_data_link] if args.key?(:annotations_data_link)
  @annotations_link = args[:annotations_link] if args.key?(:annotations_link)
  @content_version = args[:content_version] if args.key?(:content_version)
  @data_count = args[:data_count] if args.key?(:data_count)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @layer_id = args[:layer_id] if args.key?(:layer_id)
  @self_link = args[:self_link] if args.key?(:self_link)
  @updated = args[:updated] if args.key?(:updated)
  @volume_annotations_version = args[:volume_annotations_version] if args.key?(:volume_annotations_version)
  @volume_id = args[:volume_id] if args.key?(:volume_id)
end