/** * 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. */ /** * New images linked with bottle batch. Are only used during creation/update */ export interface FileTransferDto { /** * File URI */ uri?: number; /** * File name */ name?: string; /** * Media type */ mediaType?: string; /** * File content encoded in base64 */ fileContent?: string; }