m2-traitement-benchmark/models/data_thread.py

23 lines
423 B
Python
Raw Normal View History

2024-05-29 02:29:36 +02:00
from typing_extensions import List
import json
class Data_Thread:
sender_name: str
recipient_name: str
subject: str
body: str
sent_date: str
received_date: str
attachment_count: int
is_read: bool
is_spam: bool
importance_level: str
reply_count: int
forward_count: int
cc_recipients: str
bcc_recipients: str
folder: str
Threads : List[Data_Thread] = []