/** * VeriWine REST API * Defintion of VeriWine REST API * * OpenAPI spec version: 0.1.1 * Contact: info@short.ch * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { DescriptionDto } from './description-dto'; import { FoodRecommendationDto } from './food-recommendation-dto'; import { IngredientDto } from './ingredient-dto'; /** * Parent wine product */ export interface WineProductDto { id?: number; wineryId?: number; name?: string; country?: string; region?: string; subRegion?: string; subSubRegion?: string; style?: string; taste?: string; category?: string; appellation?: number; specification?: string; classification?: string; allergens?: string; additives?: string; ingredients?: Array; idealGlass?: string; totalWineProduction?: number; firstYearOfMaking?: number; descriptions?: Array; foodRecommendations?: Array; oenologistId?: number; }