File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ models/barcode-type.ts
2222models/bc-pdf417-info.ts
2323models/bc-roidetect.ts
2424models/binary-data.ts
25+ models/bsi-tr03135.ts
2526models/bsiv2-item.ts
2627models/bsiv2-result.ts
2728models/byte-array-item.ts
Original file line number Diff line number Diff line change 1+ /* tslint:disable */
2+ /* eslint-disable */
3+ /**
4+ * NOTE: This file is auto generated by OpenAPI Generator.
5+ * Do not edit the file manually.
6+ */
7+
8+
9+
10+ /**
11+ *
12+ * @export
13+ * @interface BsiTr03135
14+ */
15+ export interface BsiTr03135 {
16+ /**
17+ * When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
18+ * @type {boolean }
19+ * @memberof BsiTr03135
20+ */
21+ 'generateResult' ?: boolean ;
22+ }
23+
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export * from './barcode-type';
1717export * from './bc-pdf417-info' ;
1818export * from './bc-roidetect' ;
1919export * from './binary-data' ;
20+ export * from './bsi-tr03135' ;
2021export * from './byte-array-item' ;
2122export * from './byte-array-result' ;
2223export * from './candidates-list-item' ;
Original file line number Diff line number Diff line change 1111import type { AuthParams } from './auth-params' ;
1212// May contain unused imports in some cases
1313// @ts -ignore
14+ import type { BsiTr03135 } from './bsi-tr03135' ;
15+ // May contain unused imports in some cases
16+ // @ts -ignore
1417import type { DocumentFormat } from './document-format' ;
1518// May contain unused imports in some cases
1619// @ts -ignore
@@ -470,11 +473,11 @@ export interface ProcessParams {
470473 */
471474 'returnTransliteratedFields' ?: boolean ;
472475 /**
473- * When enabled, returns processing results in accordance with the BSI TR-03135 standard in addition to the existing processing results.
474- * @type {boolean }
476+ *
477+ * @type {BsiTr03135 }
475478 * @memberof ProcessParams
476479 */
477- 'bsiTr03135Results ' ?: boolean ;
480+ 'bsiTr03135 ' ?: BsiTr03135 ;
478481}
479482
480483
You can’t perform that action at this time.
0 commit comments