dadata/api/stat/model.go

15 lines
297 B
Go
Raw Permalink Normal View History

2019-04-09 17:08:32 +03:00
package stat
type (
// Response usage statistics
// see docs https://dadata.ru/api/stat/
Stat struct {
Date string `json:"date"`
Services *struct {
Merging int `json:"merging"`
Suggestions int `json:"suggestions"`
Clean int `json:"clean"`
} `json:"services"`
}
)