Class: Google::Apis::BooksV1::GeoLayerData::Geo::Boundary

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

Returns a new instance of Boundary.



1777
1778
1779
# File 'generated/google/apis/books_v1/classes.rb', line 1777

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

Instance Attribute Details

#latitudeFixnum

Corresponds to the JSON property latitude

Returns:

  • (Fixnum)


1770
1771
1772
# File 'generated/google/apis/books_v1/classes.rb', line 1770

def latitude
  @latitude
end

#longitudeFixnum

Corresponds to the JSON property longitude

Returns:

  • (Fixnum)


1775
1776
1777
# File 'generated/google/apis/books_v1/classes.rb', line 1775

def longitude
  @longitude
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1782
1783
1784
1785
# File 'generated/google/apis/books_v1/classes.rb', line 1782

def update!(**args)
  @latitude = args[:latitude] if args.key?(:latitude)
  @longitude = args[:longitude] if args.key?(:longitude)
end