2024-01-30 11:26:41 +00:00
|
|
|
package ap
|
|
|
|
|
2024-01-31 16:56:07 +00:00
|
|
|
// One option for a survey
|
2024-01-30 11:26:41 +00:00
|
|
|
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
|
|
|
|
}
|