/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { LearnerListItem } from './LearnerListItem'; import type { LearnerListPagination } from './LearnerListPagination'; import type { PlatformInfo } from './PlatformInfo'; /** * Serializer for learner list API response. */ export type LearnerListResponse = { /** * Platform information */ platform: PlatformInfo; /** * List of learners */ learners: Array; /** * Pagination metadata */ pagination: LearnerListPagination; /** * Response generation timestamp */ generated_at: string; };