import type { PlatformLicenseDetail } from './PlatformLicenseDetail'; /** * Response serializer for paginated platform license list */ export type PaginatedPlatformLicense = { /** * 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 platform licenses */ results: Array; };