/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type GraderCriterion = { readonly id: number; /** * Name for the criteria (accuracy, clarity, etc.) */ name: string; /** * The requirements to evaluate this criterion against. */ criteria: string; /** * Raw point value for this criterion (e.g. 6 for a 6-point criterion). Normalized against the sum of all criteria points at grading time. */ points?: number; };