"""Client API Key model.""" from dataclasses import dataclass from typing import Optional @dataclass class ClientKey: """Client API key for authentication.""" id: int key: str name: Optional[str] is_active: bool created_at: str