/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * 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; };