Develop #22
|
@ -7,6 +7,7 @@ type OrderUpdateORStatus struct {
|
||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
DeliveryStatus string `json:"deliveryStatus"`
|
DeliveryStatus string `json:"deliveryStatus"`
|
||||||
Reason string `json:"reason"`
|
Reason string `json:"reason"`
|
||||||
|
Data OrderORData `json:"data"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// OrderCancelDelivery ...
|
// OrderCancelDelivery ...
|
||||||
|
@ -20,3 +21,8 @@ type OrderChangeDeliveryStatus struct {
|
||||||
DeliveryStatus string `json:"deliveryStatus"`
|
DeliveryStatus string `json:"deliveryStatus"`
|
||||||
ActionBy ActionBy `json:"actionBy"`
|
ActionBy ActionBy `json:"actionBy"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OrderORData ...
|
||||||
|
type OrderORData struct {
|
||||||
|
Link string `json:"link"`
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue