Project

General

Profile

1
import { FILE_TYPE } from './../enums/FILE_TYPE.enum';
2
export interface InvoiceProcessCriteriaInterface {
3
  userId: string;
4
  fromDate: Date;
5
  toDate: Date;
6
  docClassification: string;
7
  fileCode: string;
8
  fileType: FILE_TYPE;
9
  processId: number;
10
  processStatus: string;
11
  ipowerClientName: string;
12
  ipowerClientCode: string;
13
  personalData: boolean;
14
  username: string;
15
}
(22-22/50)