@shipengine/connect-carrier-api 4.11.10 → 4.11.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/models/customs/unit-of-measure-types.d.ts +83 -0
- package/lib/models/customs/unit-of-measure-types.js +88 -0
- package/lib/models/customs/unit-of-measure-types.js.map +1 -0
- package/lib/models/products.d.ts +3 -0
- package/lib/models/products.js +2 -0
- package/lib/models/products.js.map +1 -1
- package/package.json +1 -1
- package/spec.json +48 -0
- package/src/models/customs/unit-of-measure-types.ts +83 -0
- package/src/models/products.ts +3 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/** @description This attribute mentions the type of unit of measure */
|
|
2
|
+
export declare enum UnitOfMeasureTypes {
|
|
3
|
+
/** @description barrel */
|
|
4
|
+
Barrel = "barrel",
|
|
5
|
+
/** @description bundle */
|
|
6
|
+
Bundle = "bundle",
|
|
7
|
+
/** @description bag */
|
|
8
|
+
Bag = "bag",
|
|
9
|
+
/** @description bunch */
|
|
10
|
+
Bunch = "bunch",
|
|
11
|
+
/** @description box */
|
|
12
|
+
Box = "box",
|
|
13
|
+
/** @description bolt */
|
|
14
|
+
Bolt = "bolt",
|
|
15
|
+
/** @description butt */
|
|
16
|
+
Butt = "butt",
|
|
17
|
+
/** @description canister */
|
|
18
|
+
Canister = "canister",
|
|
19
|
+
/** @description centimeter */
|
|
20
|
+
Centimeter = "centimeter",
|
|
21
|
+
/** @description container */
|
|
22
|
+
Container = "container",
|
|
23
|
+
/** @description crate */
|
|
24
|
+
Crate = "crate",
|
|
25
|
+
/** @description case */
|
|
26
|
+
Case = "case",
|
|
27
|
+
/** @description carton */
|
|
28
|
+
Carton = "carton",
|
|
29
|
+
/** @description cylinder */
|
|
30
|
+
Cylinder = "cylinder",
|
|
31
|
+
/** @description dozen */
|
|
32
|
+
Dozen = "dozen",
|
|
33
|
+
/** @description each */
|
|
34
|
+
Each = "each",
|
|
35
|
+
/** @description envelope */
|
|
36
|
+
Envelope = "envelope",
|
|
37
|
+
/** @description feet */
|
|
38
|
+
Feet = "feet",
|
|
39
|
+
/** @description kilogram */
|
|
40
|
+
Kilogram = "kilogram",
|
|
41
|
+
/** @description kilograms */
|
|
42
|
+
Kilograms = "kilograms",
|
|
43
|
+
/** @description pound */
|
|
44
|
+
Pound = "pound",
|
|
45
|
+
/** @description pounds */
|
|
46
|
+
Pounds = "pounds",
|
|
47
|
+
/** @description liter */
|
|
48
|
+
Liter = "liter",
|
|
49
|
+
/** @description meter */
|
|
50
|
+
Meter = "meter",
|
|
51
|
+
/** @description number */
|
|
52
|
+
Number = "number",
|
|
53
|
+
/** @description packet */
|
|
54
|
+
Packet = "packet",
|
|
55
|
+
/** @description pallet */
|
|
56
|
+
Pallet = "pallet",
|
|
57
|
+
/** @description piece */
|
|
58
|
+
Piece = "piece",
|
|
59
|
+
/** @description pieces */
|
|
60
|
+
Pieces = "pieces",
|
|
61
|
+
/** @description proof_liters */
|
|
62
|
+
Proof_Liters = "proof_liters",
|
|
63
|
+
/** @description package */
|
|
64
|
+
Package = "package",
|
|
65
|
+
/** @description pair */
|
|
66
|
+
Pair = "pair",
|
|
67
|
+
/** @description pairs */
|
|
68
|
+
Pairs = "pairs",
|
|
69
|
+
/** @description roll */
|
|
70
|
+
Roll = "roll",
|
|
71
|
+
/** @description set */
|
|
72
|
+
Set = "set",
|
|
73
|
+
/** @description square_meters */
|
|
74
|
+
Square_Meters = "square_meters",
|
|
75
|
+
/** @description square_yards */
|
|
76
|
+
Square_Yards = "square_yards",
|
|
77
|
+
/** @description tube */
|
|
78
|
+
Tube = "tube",
|
|
79
|
+
/** @description yard */
|
|
80
|
+
Yard = "yard",
|
|
81
|
+
/** @description other */
|
|
82
|
+
Other = "other"
|
|
83
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnitOfMeasureTypes = void 0;
|
|
4
|
+
/** @description This attribute mentions the type of unit of measure */
|
|
5
|
+
var UnitOfMeasureTypes;
|
|
6
|
+
(function (UnitOfMeasureTypes) {
|
|
7
|
+
/** @description barrel */
|
|
8
|
+
UnitOfMeasureTypes["Barrel"] = "barrel";
|
|
9
|
+
/** @description bundle */
|
|
10
|
+
UnitOfMeasureTypes["Bundle"] = "bundle";
|
|
11
|
+
/** @description bag */
|
|
12
|
+
UnitOfMeasureTypes["Bag"] = "bag";
|
|
13
|
+
/** @description bunch */
|
|
14
|
+
UnitOfMeasureTypes["Bunch"] = "bunch";
|
|
15
|
+
/** @description box */
|
|
16
|
+
UnitOfMeasureTypes["Box"] = "box";
|
|
17
|
+
/** @description bolt */
|
|
18
|
+
UnitOfMeasureTypes["Bolt"] = "bolt";
|
|
19
|
+
/** @description butt */
|
|
20
|
+
UnitOfMeasureTypes["Butt"] = "butt";
|
|
21
|
+
/** @description canister */
|
|
22
|
+
UnitOfMeasureTypes["Canister"] = "canister";
|
|
23
|
+
/** @description centimeter */
|
|
24
|
+
UnitOfMeasureTypes["Centimeter"] = "centimeter";
|
|
25
|
+
/** @description container */
|
|
26
|
+
UnitOfMeasureTypes["Container"] = "container";
|
|
27
|
+
/** @description crate */
|
|
28
|
+
UnitOfMeasureTypes["Crate"] = "crate";
|
|
29
|
+
/** @description case */
|
|
30
|
+
UnitOfMeasureTypes["Case"] = "case";
|
|
31
|
+
/** @description carton */
|
|
32
|
+
UnitOfMeasureTypes["Carton"] = "carton";
|
|
33
|
+
/** @description cylinder */
|
|
34
|
+
UnitOfMeasureTypes["Cylinder"] = "cylinder";
|
|
35
|
+
/** @description dozen */
|
|
36
|
+
UnitOfMeasureTypes["Dozen"] = "dozen";
|
|
37
|
+
/** @description each */
|
|
38
|
+
UnitOfMeasureTypes["Each"] = "each";
|
|
39
|
+
/** @description envelope */
|
|
40
|
+
UnitOfMeasureTypes["Envelope"] = "envelope";
|
|
41
|
+
/** @description feet */
|
|
42
|
+
UnitOfMeasureTypes["Feet"] = "feet";
|
|
43
|
+
/** @description kilogram */
|
|
44
|
+
UnitOfMeasureTypes["Kilogram"] = "kilogram";
|
|
45
|
+
/** @description kilograms */
|
|
46
|
+
UnitOfMeasureTypes["Kilograms"] = "kilograms";
|
|
47
|
+
/** @description pound */
|
|
48
|
+
UnitOfMeasureTypes["Pound"] = "pound";
|
|
49
|
+
/** @description pounds */
|
|
50
|
+
UnitOfMeasureTypes["Pounds"] = "pounds";
|
|
51
|
+
/** @description liter */
|
|
52
|
+
UnitOfMeasureTypes["Liter"] = "liter";
|
|
53
|
+
/** @description meter */
|
|
54
|
+
UnitOfMeasureTypes["Meter"] = "meter";
|
|
55
|
+
/** @description number */
|
|
56
|
+
UnitOfMeasureTypes["Number"] = "number";
|
|
57
|
+
/** @description packet */
|
|
58
|
+
UnitOfMeasureTypes["Packet"] = "packet";
|
|
59
|
+
/** @description pallet */
|
|
60
|
+
UnitOfMeasureTypes["Pallet"] = "pallet";
|
|
61
|
+
/** @description piece */
|
|
62
|
+
UnitOfMeasureTypes["Piece"] = "piece";
|
|
63
|
+
/** @description pieces */
|
|
64
|
+
UnitOfMeasureTypes["Pieces"] = "pieces";
|
|
65
|
+
/** @description proof_liters */
|
|
66
|
+
UnitOfMeasureTypes["Proof_Liters"] = "proof_liters";
|
|
67
|
+
/** @description package */
|
|
68
|
+
UnitOfMeasureTypes["Package"] = "package";
|
|
69
|
+
/** @description pair */
|
|
70
|
+
UnitOfMeasureTypes["Pair"] = "pair";
|
|
71
|
+
/** @description pairs */
|
|
72
|
+
UnitOfMeasureTypes["Pairs"] = "pairs";
|
|
73
|
+
/** @description roll */
|
|
74
|
+
UnitOfMeasureTypes["Roll"] = "roll";
|
|
75
|
+
/** @description set */
|
|
76
|
+
UnitOfMeasureTypes["Set"] = "set";
|
|
77
|
+
/** @description square_meters */
|
|
78
|
+
UnitOfMeasureTypes["Square_Meters"] = "square_meters";
|
|
79
|
+
/** @description square_yards */
|
|
80
|
+
UnitOfMeasureTypes["Square_Yards"] = "square_yards";
|
|
81
|
+
/** @description tube */
|
|
82
|
+
UnitOfMeasureTypes["Tube"] = "tube";
|
|
83
|
+
/** @description yard */
|
|
84
|
+
UnitOfMeasureTypes["Yard"] = "yard";
|
|
85
|
+
/** @description other */
|
|
86
|
+
UnitOfMeasureTypes["Other"] = "other";
|
|
87
|
+
})(UnitOfMeasureTypes || (exports.UnitOfMeasureTypes = UnitOfMeasureTypes = {}));
|
|
88
|
+
//# sourceMappingURL=unit-of-measure-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unit-of-measure-types.js","sourceRoot":"","sources":["../../../src/models/customs/unit-of-measure-types.ts"],"names":[],"mappings":";;;AAAA,uEAAuE;AACvE,IAAY,kBAiFX;AAjFD,WAAY,kBAAkB;IAC5B,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,uBAAuB;IACvB,iCAAW,CAAA;IACX,yBAAyB;IACzB,qCAAe,CAAA;IACf,uBAAuB;IACvB,iCAAW,CAAA;IACX,wBAAwB;IACxB,mCAAa,CAAA;IACb,wBAAwB;IACxB,mCAAa,CAAA;IACb,4BAA4B;IAC5B,2CAAqB,CAAA;IACrB,8BAA8B;IAC9B,+CAAyB,CAAA;IACzB,6BAA6B;IAC7B,6CAAuB,CAAA;IACvB,yBAAyB;IACzB,qCAAe,CAAA;IACf,wBAAwB;IACxB,mCAAa,CAAA;IACb,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,4BAA4B;IAC5B,2CAAqB,CAAA;IACrB,yBAAyB;IACzB,qCAAe,CAAA;IACf,wBAAwB;IACxB,mCAAa,CAAA;IACb,4BAA4B;IAC5B,2CAAqB,CAAA;IACrB,wBAAwB;IACxB,mCAAa,CAAA;IACb,4BAA4B;IAC5B,2CAAqB,CAAA;IACrB,6BAA6B;IAC7B,6CAAuB,CAAA;IACvB,yBAAyB;IACzB,qCAAe,CAAA;IACf,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,yBAAyB;IACzB,qCAAe,CAAA;IACf,yBAAyB;IACzB,qCAAe,CAAA;IACf,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,yBAAyB;IACzB,qCAAe,CAAA;IACf,0BAA0B;IAC1B,uCAAiB,CAAA;IACjB,gCAAgC;IAChC,mDAA6B,CAAA;IAC7B,2BAA2B;IAC3B,yCAAmB,CAAA;IACnB,wBAAwB;IACxB,mCAAa,CAAA;IACb,yBAAyB;IACzB,qCAAe,CAAA;IACf,wBAAwB;IACxB,mCAAa,CAAA;IACb,uBAAuB;IACvB,iCAAW,CAAA;IACX,iCAAiC;IACjC,qDAA+B,CAAA;IAC/B,gCAAgC;IAChC,mDAA6B,CAAA;IAC7B,wBAAwB;IACxB,mCAAa,CAAA;IACb,wBAAwB;IACxB,mCAAa,CAAA;IACb,yBAAyB;IACzB,qCAAe,CAAA;AACjB,CAAC,EAjFW,kBAAkB,kCAAlB,kBAAkB,QAiF7B"}
|
package/lib/models/products.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { WeightDetails } from './units/weight-details';
|
|
2
2
|
import { Currency } from './currency';
|
|
3
3
|
import { DangerousGoods } from './dangerous-good/dangerous-goods';
|
|
4
|
+
import { UnitOfMeasureTypes } from './customs/unit-of-measure-types';
|
|
4
5
|
/** @description Basic structure for a product */
|
|
5
6
|
export declare class Products {
|
|
6
7
|
/** @description A user specified free form string describing this customs item. If the field is absent the user has not specified a description */
|
|
@@ -13,6 +14,8 @@ export declare class Products {
|
|
|
13
14
|
country_of_origin?: string;
|
|
14
15
|
/** @description The user specified Harmonized Tariff Code. See https://hts.usitc.gov/ for more information */
|
|
15
16
|
harmonized_tariff_code?: string;
|
|
17
|
+
/** @description The user specified unit of measure of this customs item */
|
|
18
|
+
unit_of_measure?: UnitOfMeasureTypes;
|
|
16
19
|
/** @description The user specified SKU of this customs item. This field is completely free form. */
|
|
17
20
|
sku?: string;
|
|
18
21
|
/** @description The user specified SKU description of this customs item. This field is completely free form. */
|
package/lib/models/products.js
CHANGED
|
@@ -13,6 +13,8 @@ class Products {
|
|
|
13
13
|
country_of_origin;
|
|
14
14
|
/** @description The user specified Harmonized Tariff Code. See https://hts.usitc.gov/ for more information */
|
|
15
15
|
harmonized_tariff_code;
|
|
16
|
+
/** @description The user specified unit of measure of this customs item */
|
|
17
|
+
unit_of_measure;
|
|
16
18
|
/** @description The user specified SKU of this customs item. This field is completely free form. */
|
|
17
19
|
sku;
|
|
18
20
|
/** @description The user specified SKU description of this customs item. This field is completely free form. */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"products.js","sourceRoot":"","sources":["../../src/models/products.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"products.js","sourceRoot":"","sources":["../../src/models/products.ts"],"names":[],"mappings":";;;AAKA,iDAAiD;AACjD,MAAa,QAAQ;IACnB,mJAAmJ;IACnJ,WAAW,CAAU;IACrB,4GAA4G;IAC5G,QAAQ,CAAU;IAClB,mKAAmK;IACnK,KAAK,CAAY;IACjB,sFAAsF;IACtF,iBAAiB,CAAU;IAC3B,8GAA8G;IAC9G,sBAAsB,CAAU;IAChC,2EAA2E;IAC3E,eAAe,CAAsB;IACrC,oGAAoG;IACpG,GAAG,CAAU;IACb,gHAAgH;IAChH,eAAe,CAAU;IACzB,sEAAsE;IACtE,WAAW,CAAiB;IAC5B,0LAA0L;IAC1L,WAAW,CAAU;IACrB,oHAAoH;IACpH,QAAQ,CAAU;IAClB,yNAAyN;IACzN,QAAQ,CAAU;IAClB,qGAAqG;IACrG,eAAe,CAAoB;CAGpC;AA7BD,4BA6BC"}
|
package/package.json
CHANGED
package/spec.json
CHANGED
|
@@ -3076,6 +3076,51 @@
|
|
|
3076
3076
|
],
|
|
3077
3077
|
"type": "string"
|
|
3078
3078
|
},
|
|
3079
|
+
"UnitOfMeasureEnum": {
|
|
3080
|
+
"enum": [
|
|
3081
|
+
"barrel",
|
|
3082
|
+
"bundle",
|
|
3083
|
+
"bag",
|
|
3084
|
+
"bunch",
|
|
3085
|
+
"box",
|
|
3086
|
+
"bolt",
|
|
3087
|
+
"butt",
|
|
3088
|
+
"canister",
|
|
3089
|
+
"centimeter",
|
|
3090
|
+
"container",
|
|
3091
|
+
"crate",
|
|
3092
|
+
"case",
|
|
3093
|
+
"carton",
|
|
3094
|
+
"cylinder",
|
|
3095
|
+
"dozen",
|
|
3096
|
+
"each",
|
|
3097
|
+
"envelope",
|
|
3098
|
+
"feet",
|
|
3099
|
+
"kilogram",
|
|
3100
|
+
"kilograms",
|
|
3101
|
+
"pound",
|
|
3102
|
+
"pounds",
|
|
3103
|
+
"liter",
|
|
3104
|
+
"meter",
|
|
3105
|
+
"number",
|
|
3106
|
+
"packet",
|
|
3107
|
+
"pallet",
|
|
3108
|
+
"piece",
|
|
3109
|
+
"pieces",
|
|
3110
|
+
"proof_liters",
|
|
3111
|
+
"package",
|
|
3112
|
+
"pair",
|
|
3113
|
+
"pairs",
|
|
3114
|
+
"roll",
|
|
3115
|
+
"set",
|
|
3116
|
+
"square_meters",
|
|
3117
|
+
"square_yards",
|
|
3118
|
+
"tube",
|
|
3119
|
+
"yard",
|
|
3120
|
+
"other"
|
|
3121
|
+
],
|
|
3122
|
+
"type": "string"
|
|
3123
|
+
},
|
|
3079
3124
|
"PaperlessDetails": {
|
|
3080
3125
|
"type": "object",
|
|
3081
3126
|
"properties": {
|
|
@@ -3285,6 +3330,9 @@
|
|
|
3285
3330
|
"description": "The user specified Harmonized Tariff Code. See https://hts.usitc.gov/ for more information.",
|
|
3286
3331
|
"nullable": true
|
|
3287
3332
|
},
|
|
3333
|
+
"unit_of_measure": {
|
|
3334
|
+
"$ref": "#/components/schemas/UnitOfMeasureEnum"
|
|
3335
|
+
},
|
|
3288
3336
|
"sku": {
|
|
3289
3337
|
"type": "string",
|
|
3290
3338
|
"description": "The user specified SKU of this customs item. This field is completely free form.",
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/** @description This attribute mentions the type of unit of measure */
|
|
2
|
+
export enum UnitOfMeasureTypes {
|
|
3
|
+
/** @description barrel */
|
|
4
|
+
Barrel = 'barrel',
|
|
5
|
+
/** @description bundle */
|
|
6
|
+
Bundle = 'bundle',
|
|
7
|
+
/** @description bag */
|
|
8
|
+
Bag = 'bag',
|
|
9
|
+
/** @description bunch */
|
|
10
|
+
Bunch = 'bunch',
|
|
11
|
+
/** @description box */
|
|
12
|
+
Box = 'box',
|
|
13
|
+
/** @description bolt */
|
|
14
|
+
Bolt = 'bolt',
|
|
15
|
+
/** @description butt */
|
|
16
|
+
Butt = 'butt',
|
|
17
|
+
/** @description canister */
|
|
18
|
+
Canister = 'canister',
|
|
19
|
+
/** @description centimeter */
|
|
20
|
+
Centimeter = 'centimeter',
|
|
21
|
+
/** @description container */
|
|
22
|
+
Container = 'container',
|
|
23
|
+
/** @description crate */
|
|
24
|
+
Crate = 'crate',
|
|
25
|
+
/** @description case */
|
|
26
|
+
Case = 'case',
|
|
27
|
+
/** @description carton */
|
|
28
|
+
Carton = 'carton',
|
|
29
|
+
/** @description cylinder */
|
|
30
|
+
Cylinder = 'cylinder',
|
|
31
|
+
/** @description dozen */
|
|
32
|
+
Dozen = 'dozen',
|
|
33
|
+
/** @description each */
|
|
34
|
+
Each = 'each',
|
|
35
|
+
/** @description envelope */
|
|
36
|
+
Envelope = 'envelope',
|
|
37
|
+
/** @description feet */
|
|
38
|
+
Feet = 'feet',
|
|
39
|
+
/** @description kilogram */
|
|
40
|
+
Kilogram = 'kilogram',
|
|
41
|
+
/** @description kilograms */
|
|
42
|
+
Kilograms = 'kilograms',
|
|
43
|
+
/** @description pound */
|
|
44
|
+
Pound = 'pound',
|
|
45
|
+
/** @description pounds */
|
|
46
|
+
Pounds = 'pounds',
|
|
47
|
+
/** @description liter */
|
|
48
|
+
Liter = 'liter',
|
|
49
|
+
/** @description meter */
|
|
50
|
+
Meter = 'meter',
|
|
51
|
+
/** @description number */
|
|
52
|
+
Number = 'number',
|
|
53
|
+
/** @description packet */
|
|
54
|
+
Packet = 'packet',
|
|
55
|
+
/** @description pallet */
|
|
56
|
+
Pallet = 'pallet',
|
|
57
|
+
/** @description piece */
|
|
58
|
+
Piece = 'piece',
|
|
59
|
+
/** @description pieces */
|
|
60
|
+
Pieces = 'pieces',
|
|
61
|
+
/** @description proof_liters */
|
|
62
|
+
Proof_Liters = 'proof_liters',
|
|
63
|
+
/** @description package */
|
|
64
|
+
Package = 'package',
|
|
65
|
+
/** @description pair */
|
|
66
|
+
Pair = 'pair',
|
|
67
|
+
/** @description pairs */
|
|
68
|
+
Pairs = 'pairs',
|
|
69
|
+
/** @description roll */
|
|
70
|
+
Roll = 'roll',
|
|
71
|
+
/** @description set */
|
|
72
|
+
Set = 'set',
|
|
73
|
+
/** @description square_meters */
|
|
74
|
+
Square_Meters = 'square_meters',
|
|
75
|
+
/** @description square_yards */
|
|
76
|
+
Square_Yards = 'square_yards',
|
|
77
|
+
/** @description tube */
|
|
78
|
+
Tube = 'tube',
|
|
79
|
+
/** @description yard */
|
|
80
|
+
Yard = 'yard',
|
|
81
|
+
/** @description other */
|
|
82
|
+
Other = 'other',
|
|
83
|
+
}
|
package/src/models/products.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { WeightDetails } from './units/weight-details';
|
|
2
2
|
import { Currency } from './currency';
|
|
3
3
|
import { DangerousGoods } from './dangerous-good/dangerous-goods';
|
|
4
|
+
import { UnitOfMeasureTypes } from './customs/unit-of-measure-types';
|
|
4
5
|
|
|
5
6
|
/** @description Basic structure for a product */
|
|
6
7
|
export class Products {
|
|
@@ -14,6 +15,8 @@ export class Products {
|
|
|
14
15
|
country_of_origin?: string;
|
|
15
16
|
/** @description The user specified Harmonized Tariff Code. See https://hts.usitc.gov/ for more information */
|
|
16
17
|
harmonized_tariff_code?: string;
|
|
18
|
+
/** @description The user specified unit of measure of this customs item */
|
|
19
|
+
unit_of_measure?: UnitOfMeasureTypes;
|
|
17
20
|
/** @description The user specified SKU of this customs item. This field is completely free form. */
|
|
18
21
|
sku?: string;
|
|
19
22
|
/** @description The user specified SKU description of this customs item. This field is completely free form. */
|