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
1708 1709 1710 |
# File 'generated/google/apis/books_v1/classes.rb', line 1708 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latitude ⇒ Fixnum
Corresponds to the JSON property latitude
1701 1702 1703 |
# File 'generated/google/apis/books_v1/classes.rb', line 1701 def latitude @latitude end |
#longitude ⇒ Fixnum
Corresponds to the JSON property longitude
1706 1707 1708 |
# File 'generated/google/apis/books_v1/classes.rb', line 1706 def longitude @longitude end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1713 1714 1715 1716 |
# File 'generated/google/apis/books_v1/classes.rb', line 1713 def update!(**args) @latitude = args[:latitude] if args.key?(:latitude) @longitude = args[:longitude] if args.key?(:longitude) end |