Project

General

Profile

1
import { IPowerClient } from './ipower-client.interface';
2
import { Category } from './category.interface';
3
import { DocumentClassification } from './document-classification.interface';
4
export interface Template {
5
  id: number;
6

    
7
  // The 'category' field in Template objects comes from a different backend DTO than the pure Category model,
8
  // and thus does NOT have a DocumentClassification field. Use the documentClassification field below.
9
  category: Category;
10

    
11
  subCategoryCode: string;
12
  abbyyTemplate: string;
13
  client: IPowerClient;
14
  documentClassification: DocumentClassification;
15
}
(47-47/50)