Class: Google::Apis::PlacesV1::GoogleMapsPlacesV1PlaceSubDestination
- Inherits:
-
Object
- Object
- Google::Apis::PlacesV1::GoogleMapsPlacesV1PlaceSubDestination
- 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
Place resource name and id of sub destinations that relate to the place. For example, different terminals are different destinations of an airport.
Instance Attribute Summary collapse
-
#id ⇒ String
The place id of the sub destination.
-
#name ⇒ String
The resource name of the sub destination.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleMapsPlacesV1PlaceSubDestination
constructor
A new instance of GoogleMapsPlacesV1PlaceSubDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleMapsPlacesV1PlaceSubDestination
Returns a new instance of GoogleMapsPlacesV1PlaceSubDestination.
1931 1932 1933 |
# File 'lib/google/apis/places_v1/classes.rb', line 1931 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The place id of the sub destination.
Corresponds to the JSON property id
1924 1925 1926 |
# File 'lib/google/apis/places_v1/classes.rb', line 1924 def id @id end |
#name ⇒ String
The resource name of the sub destination.
Corresponds to the JSON property name
1929 1930 1931 |
# File 'lib/google/apis/places_v1/classes.rb', line 1929 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1936 1937 1938 1939 |
# File 'lib/google/apis/places_v1/classes.rb', line 1936 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) end |