Develop #22

Merged
luuvansinh merged 56 commits from develop into master 2022-09-13 02:28:19 +00:00
1 changed files with 11 additions and 5 deletions
Showing only changes of commit af6e0843b9 - Show all commits

View File

@ -7,6 +7,7 @@ type OrderUpdateORStatus struct {
Status string `json:"status"`
DeliveryStatus string `json:"deliveryStatus"`
Reason string `json:"reason"`
Data OrderORData `json:"data"`
}
// OrderCancelDelivery ...
@ -20,3 +21,8 @@ type OrderChangeDeliveryStatus struct {
DeliveryStatus string `json:"deliveryStatus"`
ActionBy ActionBy `json:"actionBy"`
}
// OrderORData ...
type OrderORData struct {
Link string `json:"link"`
}