/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for CourseReviewQueryView GET endpoint. * Matches the actual structure returned by review.to_json() */ export type CourseReviewResponse = { /** * User ID of the reviewer */ user_id: number; course_id?: string; /** * Username of the reviewer */ username: string; /** * Review content */ content: string; /** * Review rating */ rating: number | null; /** * Review title */ title: string; /** * Whether review is visible */ visible: boolean; /** * Review creation date */ created: string; /** * Review modification date */ modified: string; metadata: any; };