/** * 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 { FileTransferDto } from './file-transfer-dto'; import { ImageInfoDto } from './image-info-dto'; export interface VineyardDto { /** * Vineyard ID */ id?: number; /** * Vineyard name */ name?: string; /** * Vineyard owner ID (winery id) */ ownerId?: number; /** * Vineyard year of foundation */ yearOfFoundation?: number; /** * Year of vine plantation */ yearOfPlantation?: number; /** * Latitude of the vineyard */ latitude?: string; /** * Longitude of the vineyard */ longitude?: string; /** * Description of the soil */ soil?: string; /** * Multilingual vineyard descriptions */ descriptions?: Array; /** * The list of grape varieties grown in the vineyard */ grapeVarieties?: Array; /** * Height on which the vineyard is planted */ heightInMeters?: number; /** * New images linked with vineyard. Are only used during creation/update of vineyard info */ images?: Array; /** * Already stored images. Are only used during update of vineyard info */ alreadyStoredImages?: Array; /** * Archived */ archived?: boolean; }