/** * Serializer for course review info response. */ export type CourseReviewInfoResponse = { /** * The course ID associated with the reviews */ course_id: string; /** * Average rating of the course */ avg_rating: number | null; /** * Total number of reviews for the course */ count: number; };