/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for program review data. */ export type ProgramReview = { /** * The user identifier */ user_id: number; /** * The username of the reviewer */ username: string; /** * Review content/text */ content: string; /** * Rating value (typically 1-5) */ rating: number | null; /** * Review title */ title: string; /** * Whether the review is visible */ visible: boolean; /** * Date when review was created */ created: string | null; /** * Date when review was last modified */ modified: string | null; /** * The program key identifier */ program_key: string; };