-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels_dayreport.go
193 lines (186 loc) · 5.57 KB
/
models_dayreport.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
package tado
import (
"fmt"
"net/http"
"time"
)
// DayReport contains the daily report info
type DayReport struct {
ZoneType string `json:"zoneType"`
Interval struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
} `json:"interval"`
HoursInDay int `json:"hoursInDay"`
MeasuredData struct {
MeasuringDeviceConnected struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
DataIntervals []struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
Value bool `json:"value"`
} `json:"dataIntervals"`
} `json:"measuringDeviceConnected"`
InsideTemperature struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
Min struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"min"`
Max struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"max"`
DataPoints []struct {
Timestamp time.Time `json:"timestamp"`
Value struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"value"`
} `json:"dataPoints"`
} `json:"insideTemperature"`
Humidity struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
PercentageUnit string `json:"percentageUnit"`
Min float64 `json:"min"`
Max float64 `json:"max"`
DataPoints []struct {
Timestamp time.Time `json:"timestamp"`
Value float64 `json:"value"`
} `json:"dataPoints"`
} `json:"humidity"`
} `json:"measuredData"`
Stripes struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
DataIntervals []struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
Value struct {
StripeType string `json:"stripeType"`
Setting struct {
Type string `json:"type"`
Power string `json:"power"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"setting"`
} `json:"value"`
} `json:"dataIntervals"`
} `json:"stripes"`
Settings struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
DataIntervals []struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
Value struct {
Type string `json:"type"`
Power string `json:"power"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"value"`
} `json:"dataIntervals"`
} `json:"settings"`
CallForHeat struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
DataIntervals []struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
Value string `json:"value"`
} `json:"dataIntervals"`
} `json:"callForHeat"`
Weather struct {
Condition struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
DataIntervals []struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
Value struct {
State string `json:"state"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"value"`
} `json:"dataIntervals"`
} `json:"condition"`
Sunny struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
DataIntervals []struct {
From time.Time `json:"from"`
To time.Time `json:"to"`
Value bool `json:"value"`
} `json:"dataIntervals"`
} `json:"sunny"`
Slots struct {
TimeSeriesType string `json:"timeSeriesType"`
ValueType string `json:"valueType"`
Slots struct {
Zero400 struct {
State string `json:"state"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"04:00"`
Zero800 struct {
State string `json:"state"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"08:00"`
One200 struct {
State string `json:"state"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"12:00"`
One600 struct {
State string `json:"state"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"16:00"`
Two000 struct {
State string `json:"state"`
Temperature struct {
Celsius float64 `json:"celsius"`
Fahrenheit float64 `json:"fahrenheit"`
} `json:"temperature"`
} `json:"20:00"`
} `json:"slots"`
} `json:"slots"`
} `json:"weather"`
}
// GetDayReportInput is the input for GetDayReport
type GetDayReportInput struct {
HomeID int
ZoneID int
Date time.Time
}
func (gdri *GetDayReportInput) method() string {
return http.MethodGet
}
func (gdri *GetDayReportInput) path() string {
return fmt.Sprintf("/v2/homes/%d/zones/%d/dayReport?date=%s", gdri.HomeID, gdri.ZoneID, gdri.Date.Format("2006-01-02"))
}
func (gdri *GetDayReportInput) body() interface{} {
return nil
}
// GetDayReportOutput is the output for GetDayReport
type GetDayReportOutput struct {
DayReport
}