Class: Google::Apis::PlacesV1::GoogleMapsPlacesV1PlaceContainingPlace
- Inherits:
-
Object
- Object
- Google::Apis::PlacesV1::GoogleMapsPlacesV1PlaceContainingPlace
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/places_v1/classes.rb,
lib/google/apis/places_v1/representations.rb,
lib/google/apis/places_v1/representations.rb
Overview
Info about the place in which this place is located.
Instance Attribute Summary collapse
-
#id ⇒ String
The place id of the place in which this place is located.
-
#name ⇒ String
The resource name of the place in which this place is located.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleMapsPlacesV1PlaceContainingPlace
constructor
A new instance of GoogleMapsPlacesV1PlaceContainingPlace.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleMapsPlacesV1PlaceContainingPlace
Returns a new instance of GoogleMapsPlacesV1PlaceContainingPlace.
1797 1798 1799 |
# File 'lib/google/apis/places_v1/classes.rb', line 1797 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The place id of the place in which this place is located.
Corresponds to the JSON property id
1790 1791 1792 |
# File 'lib/google/apis/places_v1/classes.rb', line 1790 def id @id end |
#name ⇒ String
The resource name of the place in which this place is located.
Corresponds to the JSON property name
1795 1796 1797 |
# File 'lib/google/apis/places_v1/classes.rb', line 1795 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1802 1803 1804 1805 |
# File 'lib/google/apis/places_v1/classes.rb', line 1802 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) end |