/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for the content information block. */ export type ContentDetailsContentInfo = { /** * Identifier for the content item */ id: string; name?: string | null; /** * Content type (course, program, pathway, skill) */ type: string; slug?: string | null; platform?: string | null; /** * Whether the content is external to the platform */ external: boolean; /** * Metadata associated with the content item */ metadata?: Record; };