Spaces:
Paused
Paused
File size: 203 Bytes
9f72602 | 1 2 3 4 5 6 7 8 9 10 11 | from typing import Dict, List
from pydantic import BaseModel
class EmailModel(BaseModel):
headers: Dict[str, str]
body: str
content_type: str
subparts: List["EmailModel"]
size: int
|