digicust_types 1.8.57 → 1.8.59
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,3 +3,19 @@ export interface TariffNumberSuggestion {
|
|
3
3
|
reason?: string;
|
4
4
|
confidence?: number;
|
5
5
|
}
|
6
|
+
export interface TariffClassifyV2Payload {
|
7
|
+
product_name: string;
|
8
|
+
details?: string;
|
9
|
+
description?: string;
|
10
|
+
level?: string;
|
11
|
+
}
|
12
|
+
export interface TariffClassifyV2Result {
|
13
|
+
tariff_code: string;
|
14
|
+
description: string;
|
15
|
+
details: {
|
16
|
+
level: string;
|
17
|
+
confidence: number;
|
18
|
+
explanation: string;
|
19
|
+
details: string;
|
20
|
+
}[];
|
21
|
+
}
|