Merge pull request 'update odn logistic info' (#10) from change-api-tnc-to-odn into master

Reviewed-on: #10
This commit is contained in:
sinhluu 2023-08-23 06:49:54 +00:00
commit 94d6e0c606
1 changed files with 10 additions and 4 deletions

View File

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