/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ContentAnalytics } from './ContentAnalytics'; /** * Serializer for individual content items. */ export type ContentItem = { /** * Content identifier */ id: string; /** * Content name */ name: string; /** * Content slug */ slug: string; /** * Platform key */ platform: string | null; /** * Whether content is external to the platform */ external: boolean; analytics: ContentAnalytics; /** * Instructor name */ instructor?: string | null; /** * Content category */ category?: string | null; /** * Content duration */ duration?: string | null; /** * Whether content is enabled */ enabled?: boolean; /** * Creation date */ created?: string | null; /** * Last update date */ updated?: string | null; metadata?: any; };