36 lines
696 B
Python
36 lines
696 B
Python
"""
|
|
Domain models for Mail Intake.
|
|
|
|
---
|
|
|
|
## Summary
|
|
|
|
This package defines the **canonical, provider-agnostic data models**
|
|
used throughout the Mail Intake ingestion pipeline.
|
|
|
|
Models in this package:
|
|
- Represent fully parsed and normalized mail data
|
|
- Are safe to persist, serialize, and index
|
|
- Contain no provider-specific payloads or API semantics
|
|
- Serve as stable inputs for downstream processing and analysis
|
|
|
|
These models form the core internal data contract of the library.
|
|
|
|
---
|
|
|
|
## Public API
|
|
|
|
MailIntakeMessage
|
|
MailIntakeThread
|
|
|
|
---
|
|
"""
|
|
|
|
from .message import MailIntakeMessage
|
|
from .thread import MailIntakeThread
|
|
|
|
__all__ = [
|
|
"MailIntakeMessage",
|
|
"MailIntakeThread",
|
|
]
|