/** * 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. */ /** * The blockchain wallet data, which only should be specified, when new winery is created. In other cases this field is blank. */ export interface WalletDataDto { /** * Pregenerated private key for wallet (if the value is blank, the private key will be automatically generated on server side) */ privateKey?: string; /** * Wallet password */ password?: string; }