Update November 29, 2024 (#124)
This commit is contained in:
12
ozon/fbo.go
12
ozon/fbo.go
@@ -101,9 +101,6 @@ type GetFBOShipmentsListResultAdditionalData struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type GetFBOShipmentsListResultAnalyticsData struct {
|
type GetFBOShipmentsListResultAnalyticsData struct {
|
||||||
// Delivery city
|
|
||||||
City string `json:"city"`
|
|
||||||
|
|
||||||
// Delivery method
|
// Delivery method
|
||||||
DeliveryType string `json:"delivery_type"`
|
DeliveryType string `json:"delivery_type"`
|
||||||
|
|
||||||
@@ -118,9 +115,6 @@ type GetFBOShipmentsListResultAnalyticsData struct {
|
|||||||
// Payment method
|
// Payment method
|
||||||
PaymentTypeGroupName PaymentTypeGroupName `json:"payment_type_group_name"`
|
PaymentTypeGroupName PaymentTypeGroupName `json:"payment_type_group_name"`
|
||||||
|
|
||||||
// Delivery region
|
|
||||||
Region string `json:"region"`
|
|
||||||
|
|
||||||
// Warehouse identifier
|
// Warehouse identifier
|
||||||
WarehouseId int64 `json:"warehouse_id"`
|
WarehouseId int64 `json:"warehouse_id"`
|
||||||
|
|
||||||
@@ -247,9 +241,6 @@ type GetShipmentDetailsResultAdditionalData struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type GetShipmentDetailsResultAnalyticsData struct {
|
type GetShipmentDetailsResultAnalyticsData struct {
|
||||||
// Delivery city
|
|
||||||
City string `json:"city"`
|
|
||||||
|
|
||||||
// Delivery method
|
// Delivery method
|
||||||
DeliveryType string `json:"delivery_type"`
|
DeliveryType string `json:"delivery_type"`
|
||||||
|
|
||||||
@@ -264,9 +255,6 @@ type GetShipmentDetailsResultAnalyticsData struct {
|
|||||||
// Payment method
|
// Payment method
|
||||||
PaymentTypeGroupName string `json:"payment_type_group_name"`
|
PaymentTypeGroupName string `json:"payment_type_group_name"`
|
||||||
|
|
||||||
// Delivery region
|
|
||||||
Region string `json:"region"`
|
|
||||||
|
|
||||||
// Warehouse identifier
|
// Warehouse identifier
|
||||||
WarehouseId int64 `json:"warehouse_id"`
|
WarehouseId int64 `json:"warehouse_id"`
|
||||||
|
|
||||||
|
|||||||
@@ -58,8 +58,6 @@ func TestGetFBOShipmentsList(t *testing.T) {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"analytics_data": {
|
"analytics_data": {
|
||||||
"region": "РОСТОВСКАЯ ОБЛАСТЬ",
|
|
||||||
"city": "Ростов-на-Дону",
|
|
||||||
"delivery_type": "PVZ",
|
"delivery_type": "PVZ",
|
||||||
"is_premium": false,
|
"is_premium": false,
|
||||||
"payment_type_group_name": "Карты оплаты",
|
"payment_type_group_name": "Карты оплаты",
|
||||||
@@ -191,8 +189,6 @@ func TestGetShipmentDetails(t *testing.T) {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"analytics_data": {
|
"analytics_data": {
|
||||||
"region": "МОСКВА",
|
|
||||||
"city": "Москва",
|
|
||||||
"delivery_type": "Courier",
|
"delivery_type": "Courier",
|
||||||
"is_premium": false,
|
"is_premium": false,
|
||||||
"payment_type_group_name": "Карты оплаты",
|
"payment_type_group_name": "Карты оплаты",
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ type FBSPostingAddressee struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type FBSPostingAnalyticsData struct {
|
type FBSPostingAnalyticsData struct {
|
||||||
// Delivery city
|
// Delivery city. Only for rFBS shipments
|
||||||
City string `json:"city"`
|
City string `json:"city"`
|
||||||
|
|
||||||
// Delivery start date and time
|
// Delivery start date and time
|
||||||
@@ -261,7 +261,7 @@ type FBSPostingAnalyticsData struct {
|
|||||||
// Payment method
|
// Payment method
|
||||||
PaymentTypeGroupName PaymentTypeGroupName `json:"payment_type_group_name"`
|
PaymentTypeGroupName PaymentTypeGroupName `json:"payment_type_group_name"`
|
||||||
|
|
||||||
// Delivery region
|
// Delivery region. Only for rFBS shipments
|
||||||
Region string `json:"region"`
|
Region string `json:"region"`
|
||||||
|
|
||||||
// Delivery service
|
// Delivery service
|
||||||
@@ -1077,7 +1077,7 @@ type GetShipmentDataByIdentifierResultAddressee struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type GetShipmentDataByIdentifierResultAnalyticsData struct {
|
type GetShipmentDataByIdentifierResultAnalyticsData struct {
|
||||||
// Delivery city
|
// Delivery city. Only for rFBS shipments
|
||||||
City string `json:"city"`
|
City string `json:"city"`
|
||||||
|
|
||||||
// Delivery start date and time
|
// Delivery start date and time
|
||||||
@@ -1100,7 +1100,7 @@ type GetShipmentDataByIdentifierResultAnalyticsData struct {
|
|||||||
// Payment method
|
// Payment method
|
||||||
PaymentTypeGroupName string `json:"payment_type_group_name"`
|
PaymentTypeGroupName string `json:"payment_type_group_name"`
|
||||||
|
|
||||||
// Delivery region
|
// Delivery region. Only for rFBS shipments
|
||||||
Region string `json:"region"`
|
Region string `json:"region"`
|
||||||
|
|
||||||
// Delivery service
|
// Delivery service
|
||||||
|
|||||||
Reference in New Issue
Block a user