/** * 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. */ export interface BottleSizeDto { /** * Bottle size identifier */ id?: string; /** * Bottle size volume (in mcl) */ volumeMcl?: number; /** * Bottle size ratio to default bottle (750 ml) */ ratio?: number; /** * String representation of bottle size volume (in liters) */ volumeStrL?: string; /** * String representation of bottle size volume (in cl) */ volumeStrCl?: string; }