/
githubmirror
/
halo
Обзор
Документация
Войти
/
githubmirror
/
halo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ui/packages/api-client/src/models/plugin-list.ts
57 строк
1 KB
Ryan Wang
Fix ListResult hasNext description (#10158)
16 июл 2026, 06:52
Не верифицирован
16 июл 2026, 06:52
2f3a565
Код
Авторство
О чём код?
/* tslint:disable */ /* eslint-disable */ /** * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.26.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { Plugin } from './plugin'; export interface PluginList { /** * Indicates whether current page is the first page. */ 'first': boolean; /** * Indicates whether current page has next page. */ 'hasNext': boolean; /** * Indicates whether current page has previous page. */ 'hasPrevious': boolean; /** * A chunk of items. */ 'items': Array<Plugin>; /** * Indicates whether current page is the last page. */ 'last': boolean; /** * Page number, starts from 1. If not set or equal to 0, it means no pagination. */ 'page': number; /** * Size of each page. If not set or equal to 0, it means no pagination. */ 'size': number; /** * Total elements. */ 'total': number; /** * Indicates total pages. */ 'totalPages': number; }