File tree Expand file tree Collapse file tree 4 files changed +40
-0
lines changed Expand file tree Collapse file tree 4 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ models/fiber-result.ts
7474models/field-item.ts
7575models/file-image.ts
7676models/get-transactions-by-tag-response.ts
77+ models/glares-check-params.ts
7778models/graph-data.ts
7879models/graphic-field-type.ts
7980models/graphic-field.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 GlaresCheckParams
14+ */
15+ export interface GlaresCheckParams {
16+ /**
17+ * Margin from the edges of the image. 0.35 = 35%
18+ * @type {number }
19+ * @memberof GlaresCheckParams
20+ */
21+ 'imgMarginPart' ?: number ;
22+ /**
23+ * The maximum allowable part of the area occupied by the glare. The same: 0.06 = 6%
24+ * @type {number }
25+ * @memberof GlaresCheckParams
26+ */
27+ 'maxGlaringPart' ?: number ;
28+ }
29+
Original file line number Diff line number Diff line change 66 */
77
88
9+ // May contain unused imports in some cases
10+ // @ts -ignore
11+ import type { GlaresCheckParams } from './glares-check-params' ;
912// May contain unused imports in some cases
1013// @ts -ignore
1114import type { InputImageQualityChecks } from './input-image-quality-checks' ;
@@ -70,5 +73,11 @@ export interface ImageQA {
7073 * @memberof ImageQA
7174 */
7275 'expectedPass' ?: Array < InputImageQualityChecks > ;
76+ /**
77+ *
78+ * @type {GlaresCheckParams }
79+ * @memberof ImageQA
80+ */
81+ 'glaresCheckParams' ?: GlaresCheckParams ;
7382}
7483
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export * from './fiber-result';
6868export * from './field-item' ;
6969export * from './file-image' ;
7070export * from './get-transactions-by-tag-response' ;
71+ export * from './glares-check-params' ;
7172export * from './graph-data' ;
7273export * from './graphic-field' ;
7374export * from './graphic-field-type' ;
You can’t perform that action at this time.
0 commit comments