package
Version:
v0.0.0-...-3ca74ef
Opens a new window with list of versions in this module.
Published: Feb 21, 2021
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Question struct {
Title string `json:"title"`
InputType string `json:"inputType"`
InputSpec string `json:"inputSpec"`
}
type QuestionInput struct {
Title string `json:"title"`
InputType string `json:"inputType"`
InputSpec string `json:"inputSpec"`
}
type Survey struct {
ID string `json:"_id"`
Title string `json:"title"`
Token string `json:"token"`
Questions []*Question `json:"questions"`
IsDeleted bool `json:"isDeleted"`
}
type SurveyInput struct {
Title string `json:"title"`
Token string `json:"token"`
Questions []*QuestionInput `json:"questions"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.