import type * as Square from "../index"; /** * Describes the ingredient used in a `FOOD_AND_BEV` item. */ export interface CatalogItemFoodAndBeverageDetailsIngredient { /** * The dietary preference type of the ingredient. 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 ingredient from a standard pre-defined list. This should be null if it's a custom dietary preference. * See [StandardIngredient](#type-standardingredient) for possible values */ standardName?: Square.CatalogItemFoodAndBeverageDetailsIngredientStandardIngredient; /** The name of a custom user-defined ingredient. This should be null if it's a standard dietary preference. */ customName?: string | null; }