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
1777 1778 1779 |
# File 'generated/google/apis/books_v1/classes.rb', line 1777 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latitude ⇒ Fixnum
Corresponds to the JSON property latitude
1770 1771 1772 |
# File 'generated/google/apis/books_v1/classes.rb', line 1770 def latitude @latitude end |
#longitude ⇒ Fixnum
Corresponds to the JSON property longitude
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 |