Warning, /pim/sink/common/domain/mail.fbs is written in an unsupported language. File is not indexed.

0001 namespace Sink.ApplicationDomain.Buffer;
0002 
0003 table MailContact {
0004     name: string;
0005     email: string;
0006 }
0007 
0008 table Mail {
0009   uid:string;
0010   folder:string;
0011   sender:MailContact;
0012   to:[MailContact];
0013   cc:[MailContact];
0014   bcc:[MailContact];
0015   subject:string;
0016   date:string;
0017   unread:bool = false;
0018   important:bool = false;
0019   mimeMessage:string;
0020   draft:bool = false;
0021   trash:bool = false;
0022   sent:bool = false;
0023   messageId:string;
0024   parentMessageIds:[string];
0025   fullPayloadAvailable:bool = true;
0026 }
0027 
0028 root_type Mail;
0029 file_identifier "AKFB";