-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.go
210 lines (171 loc) · 4.52 KB
/
model.go
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package librus_api_go
type Librus struct {
Username string
Password string
}
type OKResponse struct {
AccessToken string `json:"access_token"`
TokenType string `json:"token_type"`
ExpiresIn int `json:"expires_in"`
RefreshToken string `json:"refresh_token"`
AccountGroup int `json:"account_group"`
}
type LibrusHeader struct {
Key string
Value string
}
type LuckyNumberResponse struct {
LuckyNumber *LuckyNumber `json:"LuckyNumber"`
}
type LuckyNumber struct {
LuckyNumber int `json:"LuckyNumber"`
LuckyNumberDay string `json:"LuckyNumberDay"`
}
type UserInfoResponse struct {
LibrusMe *LibrusMe `json:"Me"`
}
type LibrusMe struct {
User *User `json:"User"`
Class *ResourceReference `json:"Class"`
}
type UserResponse struct {
User *User `json:"User"`
}
type User struct {
FirstName string `json:"FirstName"`
LastName string `json:"LastName"`
}
type ResourceReference struct {
ID int `json:"Id"`
Url string `json:"Url"`
}
type ClassDetailsResponse struct {
ClassDetails *ClassDetails `json:"Class"`
}
type ClassDetails struct {
Number int `json:"Number"`
Symbol string `json:"Symbol"`
BeginSchoolYear string `json:"BeginSchoolYear"`
EndFirstSemester string `json:"EndFirstSemester"`
EndSchoolYear string `json:"EndSchoolYear"`
}
type GradesResponse struct {
Grades *[]Grade
}
type GradeDefault struct {
Grade string `json:"Grade"`
Date string `json:"Date"`
AddDate string `json:"AddDate"`
Semester uint8 `json:"Semester"`
IsConstituent bool `json:"IsConstituent"`
IsSemester bool `json:"IsSemester"`
IsSemesterProposition bool `json:"IsSemesterProposition"`
IsFinal bool `json:"IsFinal"`
IsFinalProposition bool `json:"IsFinalProposition"`
}
type Grade struct {
Subject *ResourceReference `json:"Subject"`
Category *ResourceReference `json:"Category"`
AddedBy *ResourceReference `json:"AddedBy"`
GradeDefault
}
type GradeDetails struct {
Subject *Subject `json:"Subject"`
Category *Category `json:"Category"`
AddedBy *User `json:"AddedBy"`
GradeDefault
}
type SubjectResponse struct {
Subject *Subject `json:"Subject"`
}
type Subject struct {
Name string `json:"Name"`
}
type CategoryResponse struct {
Category *Category `json:"Category"`
}
type Category struct {
Name string `json:"Name"`
}
type AddedByResponse struct {
AddedBy *User `json:"User"`
}
type AttendanceResponse struct {
Attendances []*AttendanceResponseObject `json:"Attendances"`
}
type AttendanceResponseObject struct {
Lesson *ResourceReference `json:"Lesson"`
Type *ResourceReference `json:"Type"`
AddedBy *ResourceReference `json:"AddedBy"`
Attendance
}
type Attendance struct {
Date string `json:"Date"`
AddDate string `json:"AddDate"`
LessonNo int `json:"LessonNo"`
Semester int `json:"Semester"`
}
type AttendanceDetails struct {
Type string `json:"Type"`
AddedBy *User `json:"AddedBy"`
Subject *Subject `json:"Subject"`
Attendance
}
type LessonResponse struct {
Lesson *Lesson `json:"Lesson"`
}
type Lesson struct {
Teacher *ResourceReference `json:"Teacher"`
Subject *ResourceReference `json:"Subject"`
Class *ResourceReference `json:"Class"`
}
type SchoolResponse struct {
School *School `json:"School"`
}
type School struct {
Name string `json:"Name"`
Town string `json:"Town"`
Street string `json:"Street"`
State string `json:"State"`
BuildingNumber string `json:"BuildingNumber"`
}
type TypesResponse struct {
Types []*Type `json:"Types"`
}
type Type struct {
ID int `json:"ID"`
Name string `json:"Name"`
}
type ClassFreeDaysResponse struct {
ClassFreeDays []*ClassFreeDayObject `json:"ClassFreeDays"`
}
type ClassFreeDayObject struct {
Type *Type `json:"Type"`
ClassFreeDayDefault
}
type ClassFreeDayDefault struct {
DateFrom string `json:"DateFrom"`
DateTo string `json:"DateTo"`
}
type ClassFreeDay struct {
Type *Type `json:"Type"`
ClassFreeDayDefault
}
type TimetableEntriesResponse struct {
Entries []*TimetableEntryObject `json:"TimetableEntries"`
}
type TimetableEntryObject struct {
Lesson *ResourceReference `json:"Lesson"`
TimetableEntryDefault
}
type TimetableEntryDefault struct {
DateFrom string `json:"DateFrom"`
DateTo string `json:"DateTo"`
DayOfTheWeek int `json:"DayOfTheWeek"`
LessonNo int `json:"LessonNo"`
}
type TimetableEntry struct {
Subject *Subject `json:"Subject"`
Teacher *User `json:"Teacher"`
TimetableEntryDefault
}