Update March 12, 2024 (#73)

Add `hybryd` value to TPL Integration Type enum
This commit is contained in:
Kirill
2024-03-13 21:54:54 +03:00
committed by GitHub
parent e6bfa30545
commit f02e71d17e
3 changed files with 5 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ type CancellationInfo struct {
CancellationReasonMessage string `json:"cancellation_reason_message"`
// Delivery service integration type
TPLIntegrationType string `json:"tpl_integration_type"`
TPLIntegrationType TPLIntegrationType `json:"tpl_integration_type"`
// Cancellation request status
State CancellationInfoState `json:"state"`

View File

@@ -312,6 +312,9 @@ const (
// delivery by the seller
NonIntegratedTPLType TPLIntegrationType = "non_integrated"
// Russian Post delivery scheme
HybrydTPLType TPLIntegrationType = "hybryd"
)
type DetailsDeliveryItemName string

View File

@@ -174,7 +174,7 @@ type FBSPosting struct {
Substatus string `json:"substatus"`
// Type of integration with the delivery service
TPLIntegrationType string `json:"tpl_integration_type"`
TPLIntegrationType TPLIntegrationType `json:"tpl_integration_type"`
// Shipment tracking number
TrackingNumber string `json:"tracking_number"`