/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Human override request. * * Scores are stored normalized but rubrics are authored in raw points, so * the wire format is points and normalization happens here. A grade with no * usable rubric snapshot has no denominator, so it cannot be overridden at * all rather than silently falling back to a different scale. */ export type PatchedGradeResultOverride = { /** * Points awarded, between 0 and the rubric's total_points. Null clears the override and restores the AI score. */ override_points?: number | null; override_feedback?: string; };