import type { ProgramLicenseDetail } from './ProgramLicenseDetail'; /** * Response serializer for paginated program license list. * * This serializer represents a paginated list of program licenses, * with navigation links and metadata. * * Fields: * count: Total number of results matching the query * next: URL for the next page of results (null if no next page) * previous: URL for the previous page of results (null if no previous page) * results: List of program licenses */ export type PaginatedProgramLicense = { /** * Total number of results */ count: number; /** * URL for next page of results */ next_page: string | null; /** * URL for previous page of results */ previous_page: string | null; /** * List of program licenses */ results: Array; };