/** * Request serializer for PlatformSkillPointGroupManagementView POST endpoint. */ export type PlatformSkillPointGroupRequest = { /** * Platform key identifier */ platform_key: string; /** * ID of the user group to update */ group_id: number; /** * Dictionary mapping skill names to point values to apply to group */ point_data: Record; /** * If True, removes all skills not in point_data. If False, only updates specified skills. */ overwrite?: boolean; };