/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for CourseSkillPointInfoView POST endpoint. * Validates request body for updating course skill point information. */ export type CourseSkillPointInfoRequest = { /** * ID of the course to update skill point information for */ course_id: string; /** * Dictionary mapping skill names to point values. Example: {'skill_name': 5} */ point_data: Record; /** * If True, removes all skills not in point_data. If False, only updates specified skills. */ overwrite?: boolean; };