Class: Google::Apis::BooksV1::GeoLayerData::Geo::Boundary
- Inherits:
-
Object
- Object
- Google::Apis::BooksV1::GeoLayerData::Geo::Boundary
- 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
-
#latitude ⇒ Fixnum
Corresponds to the JSON property
latitude
. -
#longitude ⇒ Fixnum
Corresponds to the JSON property
longitude
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Boundary
constructor
A new instance of Boundary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Boundary
Returns a new instance of Boundary.
1814 1815 1816 |
# File 'generated/google/apis/books_v1/classes.rb', line 1814 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latitude ⇒ Fixnum
Corresponds to the JSON property latitude
1807 1808 1809 |
# File 'generated/google/apis/books_v1/classes.rb', line 1807 def latitude @latitude end |
#longitude ⇒ Fixnum
Corresponds to the JSON property longitude
1812 1813 1814 |
# File 'generated/google/apis/books_v1/classes.rb', line 1812 def longitude @longitude end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1819 1820 1821 1822 |
# File 'generated/google/apis/books_v1/classes.rb', line 1819 def update!(**args) @latitude = args[:latitude] if args.key?(:latitude) @longitude = args[:longitude] if args.key?(:longitude) end |