/** * Request serializer for PlatformSkillPointBulkManagementView POST endpoint. */ export type PlatformSkillPointBulkRequest = { /** * Platform key identifier (required for platform admin access) */ platform_key?: string; /** * List of skill point data objects to create/update */ skill_point_data: Array>; };