forked from seamapi/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thermostats.go
435 lines (377 loc) · 13.6 KB
/
thermostats.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
fmt "fmt"
core "github.com/seamapi/go/core"
time "time"
)
type ThermostatsCoolRequest struct {
DeviceId string `json:"device_id"`
CoolingSetPointCelsius *float64 `json:"cooling_set_point_celsius,omitempty"`
CoolingSetPointFahrenheit *float64 `json:"cooling_set_point_fahrenheit,omitempty"`
Sync *bool `json:"sync,omitempty"`
}
type ThermostatsGetRequest struct {
DeviceId *string `json:"device_id,omitempty"`
Name *string `json:"name,omitempty"`
}
type ThermostatsHeatRequest struct {
DeviceId string `json:"device_id"`
HeatingSetPointCelsius *float64 `json:"heating_set_point_celsius,omitempty"`
HeatingSetPointFahrenheit *float64 `json:"heating_set_point_fahrenheit,omitempty"`
Sync *bool `json:"sync,omitempty"`
}
type ThermostatsHeatCoolRequest struct {
DeviceId string `json:"device_id"`
HeatingSetPointCelsius *float64 `json:"heating_set_point_celsius,omitempty"`
HeatingSetPointFahrenheit *float64 `json:"heating_set_point_fahrenheit,omitempty"`
CoolingSetPointCelsius *float64 `json:"cooling_set_point_celsius,omitempty"`
CoolingSetPointFahrenheit *float64 `json:"cooling_set_point_fahrenheit,omitempty"`
Sync *bool `json:"sync,omitempty"`
}
type ThermostatsListRequest struct {
// List all devices owned by this connected account
ConnectedAccountId *string `json:"connected_account_id,omitempty"`
ConnectedAccountIds []string `json:"connected_account_ids,omitempty"`
ConnectWebviewId *string `json:"connect_webview_id,omitempty"`
DeviceType *DeviceType `json:"device_type,omitempty"`
DeviceTypes []DeviceType `json:"device_types,omitempty"`
Manufacturer *Manufacturer `json:"manufacturer,omitempty"`
DeviceIds []string `json:"device_ids,omitempty"`
Limit *float64 `json:"limit,omitempty"`
CreatedBefore *time.Time `json:"created_before,omitempty"`
UserIdentifierKey *string `json:"user_identifier_key,omitempty"`
CustomMetadataHas map[string]*ThermostatsListRequestCustomMetadataHasValue `json:"custom_metadata_has,omitempty"`
}
type ThermostatsOffRequest struct {
DeviceId string `json:"device_id"`
Sync *bool `json:"sync,omitempty"`
}
type ThermostatsSetFanModeRequest struct {
DeviceId string `json:"device_id"`
FanMode *FanMode `json:"fan_mode,omitempty"`
FanModeSetting *ThermostatsSetFanModeRequestFanModeSetting `json:"fan_mode_setting,omitempty"`
Sync *bool `json:"sync,omitempty"`
}
type ThermostatsCoolResponse struct {
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsCoolResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsCoolResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsCoolResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsCoolResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsGetResponse struct {
Thermostat *Device `json:"thermostat,omitempty"`
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsGetResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsGetResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsGetResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsGetResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsHeatCoolResponse struct {
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsHeatCoolResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsHeatCoolResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsHeatCoolResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsHeatCoolResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsHeatResponse struct {
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsHeatResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsHeatResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsHeatResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsHeatResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsListRequestCustomMetadataHasValue struct {
typeName string
String string
Boolean bool
StringOptional *string
}
func NewThermostatsListRequestCustomMetadataHasValueFromString(value string) *ThermostatsListRequestCustomMetadataHasValue {
return &ThermostatsListRequestCustomMetadataHasValue{typeName: "string", String: value}
}
func NewThermostatsListRequestCustomMetadataHasValueFromBoolean(value bool) *ThermostatsListRequestCustomMetadataHasValue {
return &ThermostatsListRequestCustomMetadataHasValue{typeName: "boolean", Boolean: value}
}
func NewThermostatsListRequestCustomMetadataHasValueFromStringOptional(value *string) *ThermostatsListRequestCustomMetadataHasValue {
return &ThermostatsListRequestCustomMetadataHasValue{typeName: "stringOptional", StringOptional: value}
}
func (t *ThermostatsListRequestCustomMetadataHasValue) UnmarshalJSON(data []byte) error {
var valueString string
if err := json.Unmarshal(data, &valueString); err == nil {
t.typeName = "string"
t.String = valueString
return nil
}
var valueBoolean bool
if err := json.Unmarshal(data, &valueBoolean); err == nil {
t.typeName = "boolean"
t.Boolean = valueBoolean
return nil
}
var valueStringOptional *string
if err := json.Unmarshal(data, &valueStringOptional); err == nil {
t.typeName = "stringOptional"
t.StringOptional = valueStringOptional
return nil
}
return fmt.Errorf("%s cannot be deserialized as a %T", data, t)
}
func (t ThermostatsListRequestCustomMetadataHasValue) MarshalJSON() ([]byte, error) {
switch t.typeName {
default:
return nil, fmt.Errorf("invalid type %s in %T", t.typeName, t)
case "string":
return json.Marshal(t.String)
case "boolean":
return json.Marshal(t.Boolean)
case "stringOptional":
return json.Marshal(t.StringOptional)
}
}
type ThermostatsListRequestCustomMetadataHasValueVisitor interface {
VisitString(string) error
VisitBoolean(bool) error
VisitStringOptional(*string) error
}
func (t *ThermostatsListRequestCustomMetadataHasValue) Accept(visitor ThermostatsListRequestCustomMetadataHasValueVisitor) error {
switch t.typeName {
default:
return fmt.Errorf("invalid type %s in %T", t.typeName, t)
case "string":
return visitor.VisitString(t.String)
case "boolean":
return visitor.VisitBoolean(t.Boolean)
case "stringOptional":
return visitor.VisitStringOptional(t.StringOptional)
}
}
type ThermostatsListResponse struct {
Thermostats []*Device `json:"thermostats,omitempty"`
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsListResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsListResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsListResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsListResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsOffResponse struct {
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsOffResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsOffResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsOffResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsOffResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsSetFanModeRequestFanModeSetting string
const (
ThermostatsSetFanModeRequestFanModeSettingAuto ThermostatsSetFanModeRequestFanModeSetting = "auto"
ThermostatsSetFanModeRequestFanModeSettingOn ThermostatsSetFanModeRequestFanModeSetting = "on"
)
func NewThermostatsSetFanModeRequestFanModeSettingFromString(s string) (ThermostatsSetFanModeRequestFanModeSetting, error) {
switch s {
case "auto":
return ThermostatsSetFanModeRequestFanModeSettingAuto, nil
case "on":
return ThermostatsSetFanModeRequestFanModeSettingOn, nil
}
var t ThermostatsSetFanModeRequestFanModeSetting
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (t ThermostatsSetFanModeRequestFanModeSetting) Ptr() *ThermostatsSetFanModeRequestFanModeSetting {
return &t
}
type ThermostatsSetFanModeResponse struct {
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsSetFanModeResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsSetFanModeResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsSetFanModeResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsSetFanModeResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsUpdateRequestDefaultClimateSetting struct {
AutomaticHeatingEnabled *bool `json:"automatic_heating_enabled,omitempty"`
AutomaticCoolingEnabled *bool `json:"automatic_cooling_enabled,omitempty"`
HvacModeSetting *ThermostatsUpdateRequestDefaultClimateSettingHvacModeSetting `json:"hvac_mode_setting,omitempty"`
CoolingSetPointCelsius *float64 `json:"cooling_set_point_celsius,omitempty"`
HeatingSetPointCelsius *float64 `json:"heating_set_point_celsius,omitempty"`
CoolingSetPointFahrenheit *float64 `json:"cooling_set_point_fahrenheit,omitempty"`
HeatingSetPointFahrenheit *float64 `json:"heating_set_point_fahrenheit,omitempty"`
ManualOverrideAllowed *bool `json:"manual_override_allowed,omitempty"`
_rawJSON json.RawMessage
}
func (t *ThermostatsUpdateRequestDefaultClimateSetting) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsUpdateRequestDefaultClimateSetting
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsUpdateRequestDefaultClimateSetting(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsUpdateRequestDefaultClimateSetting) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsUpdateResponse struct {
Ok bool `json:"ok"`
_rawJSON json.RawMessage
}
func (t *ThermostatsUpdateResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsUpdateResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*t = ThermostatsUpdateResponse(value)
t._rawJSON = json.RawMessage(data)
return nil
}
func (t *ThermostatsUpdateResponse) String() string {
if len(t._rawJSON) > 0 {
if value, err := core.StringifyJSON(t._rawJSON); err == nil {
return value
}
}
if value, err := core.StringifyJSON(t); err == nil {
return value
}
return fmt.Sprintf("%#v", t)
}
type ThermostatsUpdateRequest struct {
DeviceId string `json:"device_id"`
DefaultClimateSetting *ThermostatsUpdateRequestDefaultClimateSetting `json:"default_climate_setting,omitempty"`
}