tencentcloud-sdk-nodejs-ocr 4.1.199 → 4.1.201
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/package.json
CHANGED
|
@@ -69,33 +69,37 @@ export interface NonTaxItem {
|
|
|
69
69
|
*/
|
|
70
70
|
export interface TextWaybill {
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* <p>收件人姓名</p>
|
|
73
73
|
*/
|
|
74
74
|
RecName?: WaybillObj;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* <p>收件人手机号</p>
|
|
77
77
|
*/
|
|
78
78
|
RecNum?: WaybillObj;
|
|
79
79
|
/**
|
|
80
|
-
*
|
|
80
|
+
* <p>收件人地址</p>
|
|
81
81
|
*/
|
|
82
82
|
RecAddr?: WaybillObj;
|
|
83
83
|
/**
|
|
84
|
-
*
|
|
84
|
+
* <p>寄件人姓名</p>
|
|
85
85
|
*/
|
|
86
86
|
SenderName?: WaybillObj;
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
88
|
+
* <p>寄件人手机号</p>
|
|
89
89
|
*/
|
|
90
90
|
SenderNum?: WaybillObj;
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* <p>寄件人地址</p>
|
|
93
93
|
*/
|
|
94
94
|
SenderAddr?: WaybillObj;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* <p>运单号, 当同时存在 母 / 子 运单号时, 该字段为子运单号</p>
|
|
97
97
|
*/
|
|
98
98
|
WaybillNum?: WaybillObj;
|
|
99
|
+
/**
|
|
100
|
+
* <p>母运单号, 当不存在母运单号时, 该字段为不存在</p>
|
|
101
|
+
*/
|
|
102
|
+
MainWaybillNum?: WaybillObj;
|
|
99
103
|
}
|
|
100
104
|
/**
|
|
101
105
|
* RecognizeOnlineTaxiItineraryOCR返回参数结构体
|