10 lines
352 B
Go
10 lines
352 B
Go
package ap
|
|
|
|
type QuestionEntry struct {
|
|
Type string `json:"type"` // Should always be "Note"
|
|
Name string `json:"name"` // Name of the entry
|
|
Replies struct {
|
|
Type string `json:"type"` // Should always be "Collection"
|
|
TotalItems int // Nr of people that selected this
|
|
} `json:"replies"` // Nr of people that selected this option
|
|
}
|