import type * as Square from "../index"; /** * Dietary preferences that can be assigned to an `FOOD_AND_BEV` item and its ingredients. */ export interface CatalogItemFoodAndBeverageDetailsDietaryPreference { /** * The dietary preference type. Supported values include `STANDARD` and `CUSTOM` as specified in `FoodAndBeverageDetails.DietaryPreferenceType`. * See [DietaryPreferenceType](#type-dietarypreferencetype) for possible values */ type?: Square.CatalogItemFoodAndBeverageDetailsDietaryPreferenceType; /** * The name of the dietary preference from a standard pre-defined list. This should be null if it's a custom dietary preference. * See [StandardDietaryPreference](#type-standarddietarypreference) for possible values */ standardName?: Square.CatalogItemFoodAndBeverageDetailsDietaryPreferenceStandardDietaryPreference; /** The name of a user-defined custom dietary preference. This should be null if it's a standard dietary preference. */ customName?: string | null; }