/** * 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'; import { StatusHistoryRecordDto } from './status-history-record-dto'; export interface BottleBatchDto { /** * 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; /** * The actual status of 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; /** * The ID of wine product instance */ wineProductInstanceId?: number; /** * Bottle batch ID */ id?: number; /** * Wine product id */ wineProductId?: number; /** * Wine product name */ productName?: string; /** * Vintage */ year?: number; /** * The volume of each bottle in batch (in mcl.) */ bottleVolumeMcl?: number; /** * String representation of the volume of each bottle in batch (in mcl.) */ bottleVolumeLStr?: string; /** * Total number of bottles already collected in bottle groups */ bottlesInGroups?: number; /** * The whole status history of bottle batch */ statusHistory?: Array; }