2018-06-13 13:45:22 +02:00
|
|
|
package swagger
|
|
|
|
|
2018-07-25 16:24:46 +02:00
|
|
|
import "code.vikunja.io/api/models"
|
2018-06-13 13:45:22 +02:00
|
|
|
|
|
|
|
// not actually a response, just a hack to get go-swagger to include definitions
|
|
|
|
// of the various XYZOption structs
|
|
|
|
|
|
|
|
// parameterBodies
|
|
|
|
// swagger:response parameterBodies
|
|
|
|
type swaggerParameterBodies struct {
|
|
|
|
// in:body
|
|
|
|
UserLogin models.UserLogin
|
|
|
|
|
|
|
|
// in:body
|
2018-07-10 14:02:23 +02:00
|
|
|
APIUserPassword models.APIUserPassword
|
2018-06-13 13:45:22 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
List models.List
|
|
|
|
|
|
|
|
// in:body
|
|
|
|
ListItem models.ListItem
|
2018-07-03 08:48:28 +02:00
|
|
|
|
|
|
|
// in:body
|
|
|
|
Namespace models.Namespace
|
2018-06-13 13:45:22 +02:00
|
|
|
}
|