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.



1707
1708
1709
# File 'generated/google/apis/books_v1/classes.rb', line 1707

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

Instance Attribute Details

#latitudeFixnum

Corresponds to the JSON property latitude

Returns:

  • (Fixnum)


1700
1701
1702
# File 'generated/google/apis/books_v1/classes.rb', line 1700

def latitude
  @latitude
end

#longitudeFixnum

Corresponds to the JSON property longitude

Returns:

  • (Fixnum)


1705
1706
1707
# File 'generated/google/apis/books_v1/classes.rb', line 1705

def longitude
  @longitude
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1712
1713
1714
1715
# File 'generated/google/apis/books_v1/classes.rb', line 1712

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