-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdatabase-document.ts
More file actions
124 lines (118 loc) · 2.59 KB
/
database-document.ts
File metadata and controls
124 lines (118 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* tslint:disable */
/* eslint-disable */
/**
* NOTE: This file is auto generated by OpenAPI Generator.
* Do not edit the file manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { DocumentType } from './document-type';
/**
*
* @export
* @interface DatabaseDocument
*/
export interface DatabaseDocument {
/**
* Whether the document has a barcode.
* @type {boolean}
* @memberof DatabaseDocument
*/
'barcode_fields': boolean;
/**
* Country name.
* @type {string}
* @memberof DatabaseDocument
*/
'country': string;
/**
* Date when the document description was created in the database.
* @type {string}
* @memberof DatabaseDocument
*/
'created': string;
/**
*
* @type {DocumentType}
* @memberof DatabaseDocument
*/
'doc_type': DocumentType;
/**
* Document name.
* @type {string}
* @memberof DatabaseDocument
*/
'document': string;
/**
* The presence of graphic fields in the document.
* @type {boolean}
* @memberof DatabaseDocument
*/
'graphic_fields': boolean;
/**
* Document code.
* @type {number}
* @memberof DatabaseDocument
*/
'id': number;
/**
* The document has an MRZ.
* @type {boolean}
* @memberof DatabaseDocument
*/
'mrz': boolean;
/**
* Country region.
* @type {string}
* @memberof DatabaseDocument
*/
'region'?: string;
/**
* The document has an RFID chip.
* @type {boolean}
* @memberof DatabaseDocument
*/
'rfid_chip': boolean;
/**
* The presence of text fields in the document.
* @type {boolean}
* @memberof DatabaseDocument
*/
'text_fields': boolean;
/**
* Date when the document description was updated in the database.
* @type {string}
* @memberof DatabaseDocument
*/
'updated': string;
/**
* The year when the document was issued.
* @type {string}
* @memberof DatabaseDocument
*/
'year'?: string;
/**
* Guardian country.
* @type {string}
* @memberof DatabaseDocument
*/
'sovereignty'?: string;
/**
* Whether the document is no longer in circulation.
* @type {boolean}
* @memberof DatabaseDocument
*/
'deprecated'?: boolean;
/**
* ICAO country code.
* @type {string}
* @memberof DatabaseDocument
*/
'icao_code'?: string;
/**
* Document codes.
* @type {string}
* @memberof DatabaseDocument
*/
'doc_codes'?: string;
}