Merge pull request #5 from diPhantxm/refactor-enum-types

add enum types where possible
This commit is contained in:
Kirill
2023-04-02 12:54:17 +03:00
committed by GitHub
6 changed files with 138 additions and 27 deletions

View File

@@ -76,7 +76,7 @@ type GetListOfWarehousesResponse struct {
Status string `json:"status"`
// Warehouse working days
WorkingDays []string `json:"working_days"`
WorkingDays []WorkingDay `json:"working_days"`
} `json:"resulCommonResponse"`
}