40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package model
|
|
|
|
// Application Model
|
|
//
|
|
// The Application holds information about an app which can send notifications.
|
|
//
|
|
// swagger:model Application
|
|
type Application struct {
|
|
// The application id.
|
|
//
|
|
// read only: true
|
|
// required: true
|
|
// example: 5
|
|
ID uint `gorm:"primary_key;unique_index;AUTO_INCREMENT" json:"id"`
|
|
// The application token. Can be used as `appToken`. See Authentication.
|
|
//
|
|
// read only: true
|
|
// required: true
|
|
// example: AWH0wZ5r0Mbac.r
|
|
Token string `gorm:"unique_index" json:"token"`
|
|
UserID uint `gorm:"index" json:"-"`
|
|
// The application name. This is how the application should be displayed to the user.
|
|
//
|
|
// required: true
|
|
// example: Backup Server
|
|
Name string `form:"name" query:"name" json:"name" binding:"required"`
|
|
// The description of the application.
|
|
//
|
|
// required: true
|
|
// example: Backup server for the interwebs
|
|
Description string `form:"description" query:"description" json:"description"`
|
|
// The image of the application.
|
|
//
|
|
// read only: true
|
|
// required: true
|
|
// example: https://example.com/image.jpeg
|
|
Image string `json:"image"`
|
|
Messages []MessageExternal `json:"-"`
|
|
}
|