Late::FoodMenuItemAttributes
| Name |
Type |
Description |
Notes |
| price |
Money |
|
[optional] |
| spiciness |
String |
Spiciness level (e.g. MILD, MEDIUM, HOT) |
[optional] |
| allergen |
Array<String> |
Allergens (e.g. DAIRY, GLUTEN, SHELLFISH) |
[optional] |
| dietary_restriction |
Array<String> |
Dietary labels (e.g. VEGETARIAN, VEGAN, GLUTEN_FREE) |
[optional] |
| serves_num_people |
Integer |
Number of people the item serves |
[optional] |
| preparation_methods |
Array<String> |
Preparation methods (e.g. GRILLED, FRIED) |
[optional] |
| media_keys |
Array<String> |
Media references for item photos |
[optional] |
require 'late-sdk'
instance = Late::FoodMenuItemAttributes.new(
price: null,
spiciness: null,
allergen: null,
dietary_restriction: null,
serves_num_people: null,
preparation_methods: null,
media_keys: null
)