/** * Serializer for program review info response. */ export type ProgramReviewInfoResponse = { /** * The program key associated with the reviews */ program_key: string; /** * Average rating of the program */ avg_rating: number | null; /** * Total number of reviews for the program */ count: number; };