/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Resource } from './Resource'; /** * OpenAPI schema wrapper for the paginated resources endpoint. * * Mirrors the StandardPageNumberPagination response envelope so * drf-spectacular renders the correct schema. Not used at runtime * for serialization — the view uses ResourceSerializer for the items * and PaginationMixin builds the envelope. */ export type PaginatedResource = { readonly count: number; readonly next_page: number | null; readonly previous_page: number | null; readonly results: Array; };