import type { CourseLicenseAssignmentDetail } from './CourseLicenseAssignmentDetail'; /** * Response serializer for paginated course license assignment list */ export type PaginatedCourseLicenseAssignment = { /** * 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 course license assignments */ results: Array; };