File tree Expand file tree Collapse file tree 3 files changed +4
-20
lines changed Expand file tree Collapse file tree 3 files changed +4
-20
lines changed Original file line number Diff line number Diff line change @@ -101,9 +101,6 @@ type GetFBOShipmentsListResultAdditionalData struct {
101
101
}
102
102
103
103
type GetFBOShipmentsListResultAnalyticsData struct {
104
- // Delivery city
105
- City string `json:"city"`
106
-
107
104
// Delivery method
108
105
DeliveryType string `json:"delivery_type"`
109
106
@@ -118,9 +115,6 @@ type GetFBOShipmentsListResultAnalyticsData struct {
118
115
// Payment method
119
116
PaymentTypeGroupName PaymentTypeGroupName `json:"payment_type_group_name"`
120
117
121
- // Delivery region
122
- Region string `json:"region"`
123
-
124
118
// Warehouse identifier
125
119
WarehouseId int64 `json:"warehouse_id"`
126
120
@@ -247,9 +241,6 @@ type GetShipmentDetailsResultAdditionalData struct {
247
241
}
248
242
249
243
type GetShipmentDetailsResultAnalyticsData struct {
250
- // Delivery city
251
- City string `json:"city"`
252
-
253
244
// Delivery method
254
245
DeliveryType string `json:"delivery_type"`
255
246
@@ -264,9 +255,6 @@ type GetShipmentDetailsResultAnalyticsData struct {
264
255
// Payment method
265
256
PaymentTypeGroupName string `json:"payment_type_group_name"`
266
257
267
- // Delivery region
268
- Region string `json:"region"`
269
-
270
258
// Warehouse identifier
271
259
WarehouseId int64 `json:"warehouse_id"`
272
260
Original file line number Diff line number Diff line change @@ -58,8 +58,6 @@ func TestGetFBOShipmentsList(t *testing.T) {
58
58
}
59
59
],
60
60
"analytics_data": {
61
- "region": "РОСТОВСКАЯ ОБЛАСТЬ",
62
- "city": "Ростов-на-Дону",
63
61
"delivery_type": "PVZ",
64
62
"is_premium": false,
65
63
"payment_type_group_name": "Карты оплаты",
@@ -191,8 +189,6 @@ func TestGetShipmentDetails(t *testing.T) {
191
189
}
192
190
],
193
191
"analytics_data": {
194
- "region": "МОСКВА",
195
- "city": "Москва",
196
192
"delivery_type": "Courier",
197
193
"is_premium": false,
198
194
"payment_type_group_name": "Карты оплаты",
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ type FBSPostingAddressee struct {
237
237
}
238
238
239
239
type FBSPostingAnalyticsData struct {
240
- // Delivery city
240
+ // Delivery city. Only for rFBS shipments
241
241
City string `json:"city"`
242
242
243
243
// Delivery start date and time
@@ -261,7 +261,7 @@ type FBSPostingAnalyticsData struct {
261
261
// Payment method
262
262
PaymentTypeGroupName PaymentTypeGroupName `json:"payment_type_group_name"`
263
263
264
- // Delivery region
264
+ // Delivery region. Only for rFBS shipments
265
265
Region string `json:"region"`
266
266
267
267
// Delivery service
@@ -1077,7 +1077,7 @@ type GetShipmentDataByIdentifierResultAddressee struct {
1077
1077
}
1078
1078
1079
1079
type GetShipmentDataByIdentifierResultAnalyticsData struct {
1080
- // Delivery city
1080
+ // Delivery city. Only for rFBS shipments
1081
1081
City string `json:"city"`
1082
1082
1083
1083
// Delivery start date and time
@@ -1100,7 +1100,7 @@ type GetShipmentDataByIdentifierResultAnalyticsData struct {
1100
1100
// Payment method
1101
1101
PaymentTypeGroupName string `json:"payment_type_group_name"`
1102
1102
1103
- // Delivery region
1103
+ // Delivery region. Only for rFBS shipments
1104
1104
Region string `json:"region"`
1105
1105
1106
1106
// Delivery service
You can’t perform that action at this time.
0 commit comments