/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for pagination information in content details response. */ export type ContentDetailsPagination = { /** * Total learner records */ count: number; /** * Relative URL for the next page */ next?: string | null; /** * Relative URL for the previous page */ previous?: string | null; /** * Current page number */ current_page: number; /** * Total number of pages */ total_pages: number; };