/** * 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 { BottleSizeDto } from './bottle-size-dto'; import { OrgUnitNameDto } from './org-unit-name-dto'; import { StatusHistoryRecordDto } from './status-history-record-dto'; export interface BottleDto { /** * Internal ID */ id?: number; /** * Wine product instance id */ wineProductInstanceId?: number; /** * Wine product id */ wineProductId?: number; /** * Bottle TID */ tid?: string; /** * Bottle tag details */ tagDetails?: string; /** * Parent group id */ parentGroupId?: number; /** * Blockchain address */ ethAddress?: string; /** * Bottle status */ status?: string; /** * Bottle status */ boxId?: number; /** * Wine product name */ wineProductName?: string; /** * Vintage year */ vintageYear?: number; /** * Vintage color */ color?: string; wineryInfo?: OrgUnitNameDto; bottleSize?: BottleSizeDto; /** * The whole status history for bottle group */ statusHistoryRecords?: Array; tastingNote?: number; }