Class: Google::Apis::PlacesV1::GoogleMapsPlacesV1PlaceSubDestination

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleMapsPlacesV1PlaceSubDestination

Returns a new instance of GoogleMapsPlacesV1PlaceSubDestination.



1929
1930
1931
# File 'lib/google/apis/places_v1/classes.rb', line 1929

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

Instance Attribute Details

#idString

The place id of the sub destination. Corresponds to the JSON property id

Returns:

  • (String)


1922
1923
1924
# File 'lib/google/apis/places_v1/classes.rb', line 1922

def id
  @id
end

#nameString

The resource name of the sub destination. Corresponds to the JSON property name

Returns:

  • (String)


1927
1928
1929
# File 'lib/google/apis/places_v1/classes.rb', line 1927

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1934
1935
1936
1937
# File 'lib/google/apis/places_v1/classes.rb', line 1934

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