/** * 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 { OfferBottleInfoDto } from './offer-bottle-info-dto'; import { OfferVintageInfoDto } from './offer-vintage-info-dto'; import { OrderInfoDto } from './order-info-dto'; export interface OfferInfoDto { parentOfferId?: number; offerGenesis?: string; ownerUserId?: number; ownerOrgUnitId?: number; offerPrice?: number; offerCurrency?: string; comment?: string; offerType?: string; id?: number; status?: string; creationDate?: Date; remainingPrice?: number; openProducts?: Array; concreteBottles?: Array; orders?: Array; }