/** * 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 BottleBatchUpdateRequestDto { /** * Internal title of bottles batch */ internalTitle?: string; /** * Total number of bottles in batch */ bottleNumbers?: number; /** * The identifier of bottle size */ bottleSizeId?: string; /** * Closure type used for all bottles in batch */ closureType?: string; /** * Status of the bottle batch */ status?: string; /** * Bottle batch description in various languages */ descriptions?: Array; /** * New images linked with bottle batch. Are only used during creation/update */ images?: Array; /** * Already stored images. Are only used during update */ alreadyStoredImages?: Array; /** * Bottle aging in months */ bottleAgingInMonths?: number; }