fail tests, bug fix

This commit is contained in:
DmitryZagorulko 2018-04-16 17:02:27 +03:00
parent ed9b0a4396
commit a0f74fcad8
2 changed files with 5 additions and 6 deletions

View File

@ -163,4 +163,3 @@ type CustomDictionariesRequest struct {
Limit int `url:"limit,omitempty"` Limit int `url:"limit,omitempty"`
Page int `url:"page,omitempty"` Page int `url:"page,omitempty"`
} }

View File

@ -338,15 +338,15 @@ type CostsResponse struct {
// CostsUploadResponse type // CostsUploadResponse type
type CostsUploadResponse struct { type CostsUploadResponse struct {
Success bool `json:"success"` Success bool `json:"success"`
UploadedCosts []int `json:"uploadedCosts,omitempty,brackets"` UploadedCosts []int `json:"uploadedCosts,omitempty,brackets"`
} }
// CostsDeleteResponse type // CostsDeleteResponse type
type CostsDeleteResponse struct { type CostsDeleteResponse struct {
Success bool `json:"success"` Success bool `json:"success"`
Count int `json:"count,omitempty,brackets"` Count int `json:"count,omitempty,brackets"`
NotRemovedIds []int `json:"notRemovedIds,omitempty,brackets"` NotRemovedIds []int `json:"notRemovedIds,omitempty,brackets"`
} }
// CostResponse type // CostResponse type