import type { Comment } from "./Comment"; export type PaginatedCommentList = { count: number; next?: string | null; previous?: string | null; results: Array; meta?: { /** * Whether default filters or ordering were applied to the response. */ defaultsApplied?: boolean; /** * The default filters that were applied automatically, if any. */ appliedDefaultFilters?: Record; /** * The default ordering fields that were applied automatically, if any. */ appliedDefaultSorts?: Array; /** * Guidance on how to disable or override default filters and ordering. */ instructions?: string; } | null; };