/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ProgramLicenseGroupAssignmentDetail } from './ProgramLicenseGroupAssignmentDetail'; /** * Response serializer for paginated program license group assignment list. * * This serializer represents a paginated list of program license group assignments, * 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 license group assignments */ export type PaginatedProgramLicenseGroupAssignment = { /** * 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 license group assignments */ results: Array; };