"""Pydantic models for Lambda responses.""" from __future__ import annotations from pydantic import BaseModel, ConfigDict class ProcessResult(BaseModel): """Result of processing one earnings transfer batch.""" model_config = ConfigDict(frozen=True) input_key: str output_key: str format: str record_count: int