Compare commits

..

No commits in common. "94d6e0c606f18a8652ead8395c0e473fe482af70" and "ba6851fe1921c969dcc7b9087d59b1064fbd7da0" have entirely different histories.

1 changed files with 4 additions and 10 deletions

View File

@ -45,14 +45,8 @@ type OutboundRequestPayload struct {
// UpdateORLogisticInfoPayload ... // UpdateORLogisticInfoPayload ...
type UpdateORLogisticInfoPayload struct { type UpdateORLogisticInfoPayload struct {
OrID int `json:"orId"` OrID int `json:"orId"`
TrackingCode string `json:"trackingCode"`
TPLCode string `json:"tplCode"` ShippingLabel string `json:"shippingLabel"`
TrackingCode string `json:"trackingCode"` SlaShipDate string `json:"slaShipDate"`
ShippingLabels []LogisticInfoLabel `json:"shippingLabels"`
}
type LogisticInfoLabel struct {
Caption string `json:"caption"`
URI string `json:"uri"`
} }