aboutsummaryrefslogtreecommitdiff
path: root/eventlogging/types.go
blob: 29ad89d4c31541117a3e337be673b5b712d29a85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package eventlogging

type ViewGrilData struct {
	EventLoggerData
	GrilID int `json:"grilId"`
}

type ViewListData struct {
	EventLoggerData
	ListID int `json:"listId"`
}

type CreateListData struct {
	EventLoggerData
	ListID      int    `json:"listId"`
	Name        string `json:"name"`
	Description string `json:"description"`
}

type AddGrilToListData struct {
	EventLoggerData
	GrilID int `json:"grilId"`
	ListID int `json:"listId"`
}

type DeleteGrilFromListData struct {
	EventLoggerData
	ListID int `json:"listId"`
	GrilID int `json:"grilId"`
}

type DeleteListData struct {
	EventLoggerData
	ListID int `json:"listId"`
}

type EditListData struct {
	EventLoggerData
	ListID         int    `json:"listId"`
	OldName        string `json:"oldName"`
	OldDescription string `json:"oldDescription"`
	NewName        string `json:"newName"`
	NewDescription string `json:"newDescription"`
}

type ChangeGrilOrderData struct {
	EventLoggerData
	ListID   int `json:"listId"`
	GrilID   int `json:"grilId"`
	OldOrder int `json:"oldOrder"`
	NewOrder int `json:"newOrder"`
}

type ViewSeriesData struct {
	EventLoggerData
	SeriesID int `json:"seriesId"`
}

type ViewTagData struct {
	EventLoggerData
	Tag     string `json:"tag"`
	TagID   int    `json:"tagId"`
	Results int    `json:"results"`
	Pages   int    `json:"pages"`
	Page    int    `json:"page"`
}