Class: Google::Apis::BooksV1::GeoAnnotationdata

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

Constructor Details

#initialize(**args) ⇒ GeoAnnotationdata

Returns a new instance of GeoAnnotationdata.



1693
1694
1695
# File 'generated/google/apis/books_v1/classes.rb', line 1693

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

Instance Attribute Details

#annotation_typeString

The type of annotation this data is for. Corresponds to the JSON property annotationType

Returns:

  • (String)


1648
1649
1650
# File 'generated/google/apis/books_v1/classes.rb', line 1648

def annotation_type
  @annotation_type
end

#dataGoogle::Apis::BooksV1::GeoLayerData

JSON encoded data for this geo annotation data. Emitted with name 'data' in JSON output. Either this or dict_data will be populated. Corresponds to the JSON property data



1654
1655
1656
# File 'generated/google/apis/books_v1/classes.rb', line 1654

def data
  @data
end

#encoded_dataString

Base64 encoded data for this annotation data. Corresponds to the JSON property encodedData NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


1660
1661
1662
# File 'generated/google/apis/books_v1/classes.rb', line 1660

def encoded_data
  @encoded_data
end

#idString

Unique id for this annotation data. Corresponds to the JSON property id

Returns:

  • (String)


1665
1666
1667
# File 'generated/google/apis/books_v1/classes.rb', line 1665

def id
  @id
end

#kindString

Resource Type Corresponds to the JSON property kind

Returns:

  • (String)


1670
1671
1672
# File 'generated/google/apis/books_v1/classes.rb', line 1670

def kind
  @kind
end

#layer_idString

The Layer id for this data. * Corresponds to the JSON property layerId

Returns:

  • (String)


1675
1676
1677
# File 'generated/google/apis/books_v1/classes.rb', line 1675

def layer_id
  @layer_id
end

URL for this resource. * Corresponds to the JSON property selfLink

Returns:

  • (String)


1680
1681
1682
# File 'generated/google/apis/books_v1/classes.rb', line 1680

def self_link
  @self_link
end

#updatedString

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

Returns:

  • (String)


1686
1687
1688
# File 'generated/google/apis/books_v1/classes.rb', line 1686

def updated
  @updated
end

#volume_idString

The volume id for this data. * Corresponds to the JSON property volumeId

Returns:

  • (String)


1691
1692
1693
# File 'generated/google/apis/books_v1/classes.rb', line 1691

def volume_id
  @volume_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
# File 'generated/google/apis/books_v1/classes.rb', line 1698

def update!(**args)
  @annotation_type = args[:annotation_type] if args.key?(:annotation_type)
  @data = args[:data] if args.key?(:data)
  @encoded_data = args[:encoded_data] if args.key?(:encoded_data)
  @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_id = args[:volume_id] if args.key?(:volume_id)
end