14 lines
254 B
Python
14 lines
254 B
Python
"""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
|