/** * TheOffice API [DEV] * TheOffice API swagger documentation.
In order to use the Swagger, please retrieve your JWT at the following link : https://trainx.getcockpit.io/jwtand add it to the bearer field in the authorization section. * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface AltoBaseResponsePaginatedMetaDtoApi { /** * The number of items sent per page. */ itemsPerPage: number; /** * The total number of items retrieved by the database query. */ totalItems: number; /** * The current page of the paginated response. */ currentPage: number; /** * The total number of pages in the paginated response. This property is calculated from itemPerPage and totalItems. */ totalPage: number; /** * The current url */ currentUrl: string; /** * The pagination previous url */ previousUrl?: string; /** * The pagination next url */ nextUrl?: string; }