Skip to content

Commit a1fbd6f

Browse files
committed
removed counts to simplify API
1 parent 4fb56f2 commit a1fbd6f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

videobox/videobox_results.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,13 @@ type VideoAnalysis struct {
1919

2020
// Facebox holds box specific results.
2121
type Facebox struct {
22-
// FacesCount holds the total number of faces found.
23-
FacesCount int `json:"facesCount"`
2422
Faces []Item `json:"faces"`
2523
ErrorCount int `json:"errorsCount"`
2624
LastErr string `json:"lastError,omitempty"`
2725
}
2826

2927
// Tagbox holds box specific results.
3028
type Tagbox struct {
31-
// TagsCount holds the total number of tags detected.
32-
TagsCount int `json:"tagsCount"`
3329
Tags []Item `json:"tags"`
3430
ErrorCount int `json:"errorsCount"`
3531
LastErr string `json:"lastError,omitempty"`

0 commit comments

Comments
 (0)