Compare commits

...

3 Commits

Author SHA1 Message Date
sinhluu 94d6e0c606 Merge pull request 'update odn logistic info' (#10) from change-api-tnc-to-odn into master
Reviewed-on: #10
2023-08-23 06:49:54 +00:00
Sinh 7d1d63039d update odn logistic info 2023-08-23 13:49:24 +07:00
Sinh 5b1b55ee78 update odn logistic info 2023-08-23 13:48:16 +07:00
1 changed files with 10 additions and 4 deletions

View File

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