feature/get-info-supplier-campaign-app #122

Merged
Ghost merged 2 commits from feature/get-info-supplier-campaign-app into develop 2023-01-03 02:24:01 +00:00
1 changed files with 7 additions and 7 deletions
Showing only changes of commit 6ed64beecb - Show all commits

View File

@ -5,9 +5,9 @@ type ResponseSupplierInfo struct {
ID string `json:"id"`
Name string `json:"name"`
BusinessType string `json:"businessType"`
Statistic *SupplierStatistic `json:"statistic"`
Statistic SupplierStatistic `json:"statistic"`
Rating float64 `json:"rating"`
Inventories *SKUCommonInfo `json:"inventories"`
Inventories *[]SKUCommonInfo `json:"inventories"`
Active bool `json:"active"`
}