mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			252 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			252 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { ObjectWithId } from './object-with-id'
 | |
| 
 | |
| export interface ProcessedMail extends ObjectWithId {
 | |
|   rule: number // MailRule.id
 | |
|   folder: string
 | |
|   uid: number
 | |
|   subject: string
 | |
|   received: Date
 | |
|   processed: Date
 | |
|   status: string
 | |
|   error: string
 | |
| }
 | 
