Class: Aws::GeoPlaces::Types::FoodType
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::FoodType
- Defined in:
- gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
Overview
List of Food
types offered by this result.
Constant Summary collapse
- SENSITIVE =
[:localized_name, :id, :primary]
Instance Attribute Summary collapse
-
#id ⇒ String
The Food Type Id.
-
#localized_name ⇒ String
Localized name of the food type.
-
#primary ⇒ Boolean
Boolean which indicates if this food type is the primary offered by the place.
Instance Attribute Details
#id ⇒ String
The Food Type Id.
901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 901 class FoodType < Struct.new( :localized_name, :id, :primary) SENSITIVE = [:localized_name, :id, :primary] include Aws::Structure end |
#localized_name ⇒ String
Localized name of the food type.
901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 901 class FoodType < Struct.new( :localized_name, :id, :primary) SENSITIVE = [:localized_name, :id, :primary] include Aws::Structure end |
#primary ⇒ Boolean
Boolean which indicates if this food type is the primary offered by the place. For example, if a location serves fast food, but also dessert, he primary would likely be fast food.
901 902 903 904 905 906 907 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 901 class FoodType < Struct.new( :localized_name, :id, :primary) SENSITIVE = [:localized_name, :id, :primary] include Aws::Structure end |