re-uploading work
This commit is contained in:
26
web/src/api/models/PaginationMeta.ts
Normal file
26
web/src/api/models/PaginationMeta.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Pagination metadata
|
||||
*/
|
||||
export type PaginationMeta = {
|
||||
/**
|
||||
* Current page number (1-based)
|
||||
*/
|
||||
page: number;
|
||||
/**
|
||||
* Number of items per page
|
||||
*/
|
||||
page_size: number;
|
||||
/**
|
||||
* Total number of items
|
||||
*/
|
||||
total_items: number;
|
||||
/**
|
||||
* Total number of pages
|
||||
*/
|
||||
total_pages: number;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user