Project

General

Profile

1
import {LookupData} from './lookup-data.interface';
2
import {JournalEntry} from './journal-entry.interface';
3
import {AlteryxException} from './alteryx-exception.interface';
4
import {AlteryxUnhandledData} from './alteryx-unhandled-data.interface';
5
import {FilesPerProcess} from './files-per-process.interface';
6
import {ProcessFailedRecord} from './process-failed-record.interface';
7

    
8
export interface FullInvoiceProcess {
9
  id: number;
10
  processCreationDatetime: Date;
11
  documentClassificationId: number;
12
  processStatus: LookupData;
13
  userId: string;
14
  filesPerProcess: FilesPerProcess[];
15
  recordsPerProcess: any;
16
  journalEntries: JournalEntry[];
17
  alteryxExceptions: AlteryxException[];
18
  alteryxUnhandled: AlteryxUnhandledData[];
19
  failedRecords: ProcessFailedRecord[];
20
}
(15-15/50)