/** * 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 Pageable { /** * Zero-based page index (0..N) */ page?: number; /** * The size of the page to be returned */ size?: number; /** * Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported. */ sort?: Array; }