-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator-structs.go
60 lines (52 loc) · 3.18 KB
/
calculator-structs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package cdekapi
const (
OrderTypeECommerce = 1
OrderTypeDelivery = 2
)
type CalculatorRequest struct {
Date string `json:"date,omitempty"`
OrderType int `json:"type,omitempty"` // Тип заказа
Currency int `json:"currency,omitempty"` // Валюта, в которой необходимо произвести расчет
TariffCode int `json:"tariff_code"` // Код тарифа
FromLocation CalcRequestLocation `json:"from_location"` // Адрес отправления, Required
ToLocation CalcRequestLocation `json:"to_location"` // Адрес получения, Required
Services []CalcService `json:"services,omitempty"` // Дополнительные услуги
Packages []Good `json:"packages"` // Список информации по местам (упаковкам)
}
type CalcRequestLocation struct {
Code int `json:"code,omitempty"` // Код населенного пункта СДЭК (метод "Список населенных пунктов")
PostalCode string `json:"postal_code,omitempty"` // Почтовый индекс
CountryCode string `json:"country_code,omitempty"` // Код страны в формате ISO_3166-1_alpha-2
City string `json:"city,omitempty"` // Название города
}
//Good Package dimensions
type Good struct {
Weight int `json:"weight"` // Общий вес (в граммах), Required
Length int `json:"length,omitempty"` // Габариты упаковки. Длина (в сантиметрах)
Width int `json:"width,omitempty"` // Габариты упаковки. Ширина (в сантиметрах)
Height int `json:"height,omitempty"` // Габариты упаковки. Высота (в сантиметрах)
}
type CalcService struct {
Code string `json:"code"` // Тип дополнительной услуги, код из справочника доп. услуг, Required
Parameter string `json:"parameter"` // Параметр дополнительной услуги
}
type CalculatorResponse struct {
DeliveryPeriodMin int `json:"period_min"`
DeliveryPeriodMax int `json:"period_max"`
WeightCalc int `json:"weight_calc"`
Services []CalcRespService `json:"services"`
Price float64 `json:"delivery_sum"`
Total float64 `json:"total_sum"` // Стоимость доставки с учетом дополнительных услуг
Currency string `json:"currency"` // Валюта, в которой рассчитана стоимость доставки (код СДЭК)
Errors []ErrorApiV2
}
type CalcRespService struct {
Code string `json:"code"` // Тип дополнительной услуги, код из справочника доп. услуг
Sum float64 `json:"sum"` // Стоимость услуги
}
type AdditionalService struct {
ID int `json:"id"`
Title string `json:"title"`
Price float64 `json:"price"`
Rate float64 `json:"rate"`
}