-
Notifications
You must be signed in to change notification settings - Fork 3
/
thermostats.go
510 lines (443 loc) · 18.8 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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
// 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" url:"device_id"`
CoolingSetPointCelsius *float64 `json:"cooling_set_point_celsius,omitempty" url:"cooling_set_point_celsius,omitempty"`
CoolingSetPointFahrenheit *float64 `json:"cooling_set_point_fahrenheit,omitempty" url:"cooling_set_point_fahrenheit,omitempty"`
Sync *bool `json:"sync,omitempty" url:"sync,omitempty"`
}
type ThermostatsGetRequest struct {
DeviceId *string `json:"device_id,omitempty" url:"device_id,omitempty"`
Name *string `json:"name,omitempty" url:"name,omitempty"`
}
type ThermostatsHeatRequest struct {
DeviceId string `json:"device_id" url:"device_id"`
HeatingSetPointCelsius *float64 `json:"heating_set_point_celsius,omitempty" url:"heating_set_point_celsius,omitempty"`
HeatingSetPointFahrenheit *float64 `json:"heating_set_point_fahrenheit,omitempty" url:"heating_set_point_fahrenheit,omitempty"`
Sync *bool `json:"sync,omitempty" url:"sync,omitempty"`
}
type ThermostatsHeatCoolRequest struct {
DeviceId string `json:"device_id" url:"device_id"`
HeatingSetPointCelsius *float64 `json:"heating_set_point_celsius,omitempty" url:"heating_set_point_celsius,omitempty"`
HeatingSetPointFahrenheit *float64 `json:"heating_set_point_fahrenheit,omitempty" url:"heating_set_point_fahrenheit,omitempty"`
CoolingSetPointCelsius *float64 `json:"cooling_set_point_celsius,omitempty" url:"cooling_set_point_celsius,omitempty"`
CoolingSetPointFahrenheit *float64 `json:"cooling_set_point_fahrenheit,omitempty" url:"cooling_set_point_fahrenheit,omitempty"`
Sync *bool `json:"sync,omitempty" url:"sync,omitempty"`
}
type ThermostatsListRequest struct {
// List all devices owned by this connected account
ConnectedAccountId *string `json:"connected_account_id,omitempty" url:"connected_account_id,omitempty"`
ConnectedAccountIds []string `json:"connected_account_ids,omitempty" url:"connected_account_ids,omitempty"`
ConnectWebviewId *string `json:"connect_webview_id,omitempty" url:"connect_webview_id,omitempty"`
DeviceType *DeviceType `json:"device_type,omitempty" url:"device_type,omitempty"`
DeviceTypes []DeviceType `json:"device_types,omitempty" url:"device_types,omitempty"`
Manufacturer *Manufacturer `json:"manufacturer,omitempty" url:"manufacturer,omitempty"`
DeviceIds []string `json:"device_ids,omitempty" url:"device_ids,omitempty"`
Limit *float64 `json:"limit,omitempty" url:"limit,omitempty"`
CreatedBefore *time.Time `json:"created_before,omitempty" url:"created_before,omitempty"`
UserIdentifierKey *string `json:"user_identifier_key,omitempty" url:"user_identifier_key,omitempty"`
CustomMetadataHas map[string]*ThermostatsListRequestCustomMetadataHasValue `json:"custom_metadata_has,omitempty" url:"custom_metadata_has,omitempty"`
IncludeIf []ThermostatsListRequestIncludeIfItem `json:"include_if,omitempty" url:"include_if,omitempty"`
ExcludeIf []ThermostatsListRequestExcludeIfItem `json:"exclude_if,omitempty" url:"exclude_if,omitempty"`
}
func (t *ThermostatsListRequest) UnmarshalJSON(data []byte) error {
type unmarshaler ThermostatsListRequest
var body unmarshaler
if err := json.Unmarshal(data, &body); err != nil {
return err
}
*t = ThermostatsListRequest(body)
return nil
}
func (t *ThermostatsListRequest) MarshalJSON() ([]byte, error) {
type embed ThermostatsListRequest
var marshaler = struct {
embed
CreatedBefore *core.DateTime `json:"created_before,omitempty"`
}{
embed: embed(*t),
CreatedBefore: core.NewOptionalDateTime(t.CreatedBefore),
}
return json.Marshal(marshaler)
}
type ThermostatsOffRequest struct {
DeviceId string `json:"device_id" url:"device_id"`
Sync *bool `json:"sync,omitempty" url:"sync,omitempty"`
}
type ThermostatsSetFanModeRequest struct {
DeviceId string `json:"device_id" url:"device_id"`
FanMode *FanMode `json:"fan_mode,omitempty" url:"fan_mode,omitempty"`
FanModeSetting *ThermostatsSetFanModeRequestFanModeSetting `json:"fan_mode_setting,omitempty" url:"fan_mode_setting,omitempty"`
Sync *bool `json:"sync,omitempty" url:"sync,omitempty"`
}
type ThermostatsCoolResponse struct {
ActionAttempt *ActionAttempt `json:"action_attempt,omitempty" url:"action_attempt,omitempty"`
Ok bool `json:"ok" url:"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" url:"thermostat,omitempty"`
Ok bool `json:"ok" url:"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 {
ActionAttempt *ActionAttempt `json:"action_attempt,omitempty" url:"action_attempt,omitempty"`
Ok bool `json:"ok" url:"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 {
ActionAttempt *ActionAttempt `json:"action_attempt,omitempty" url:"action_attempt,omitempty"`
Ok bool `json:"ok" url:"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
}
func NewThermostatsListRequestCustomMetadataHasValueFromString(value string) *ThermostatsListRequestCustomMetadataHasValue {
return &ThermostatsListRequestCustomMetadataHasValue{typeName: "string", String: value}
}
func NewThermostatsListRequestCustomMetadataHasValueFromBoolean(value bool) *ThermostatsListRequestCustomMetadataHasValue {
return &ThermostatsListRequestCustomMetadataHasValue{typeName: "boolean", Boolean: 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
}
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)
}
}
type ThermostatsListRequestCustomMetadataHasValueVisitor interface {
VisitString(string) error
VisitBoolean(bool) 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)
}
}
type ThermostatsListRequestExcludeIfItem string
const (
ThermostatsListRequestExcludeIfItemCanRemotelyUnlock ThermostatsListRequestExcludeIfItem = "can_remotely_unlock"
ThermostatsListRequestExcludeIfItemCanRemotelyLock ThermostatsListRequestExcludeIfItem = "can_remotely_lock"
ThermostatsListRequestExcludeIfItemCanProgramOfflineAccessCodes ThermostatsListRequestExcludeIfItem = "can_program_offline_access_codes"
ThermostatsListRequestExcludeIfItemCanProgramOnlineAccessCodes ThermostatsListRequestExcludeIfItem = "can_program_online_access_codes"
ThermostatsListRequestExcludeIfItemCanSimulateRemoval ThermostatsListRequestExcludeIfItem = "can_simulate_removal"
)
func NewThermostatsListRequestExcludeIfItemFromString(s string) (ThermostatsListRequestExcludeIfItem, error) {
switch s {
case "can_remotely_unlock":
return ThermostatsListRequestExcludeIfItemCanRemotelyUnlock, nil
case "can_remotely_lock":
return ThermostatsListRequestExcludeIfItemCanRemotelyLock, nil
case "can_program_offline_access_codes":
return ThermostatsListRequestExcludeIfItemCanProgramOfflineAccessCodes, nil
case "can_program_online_access_codes":
return ThermostatsListRequestExcludeIfItemCanProgramOnlineAccessCodes, nil
case "can_simulate_removal":
return ThermostatsListRequestExcludeIfItemCanSimulateRemoval, nil
}
var t ThermostatsListRequestExcludeIfItem
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (t ThermostatsListRequestExcludeIfItem) Ptr() *ThermostatsListRequestExcludeIfItem {
return &t
}
type ThermostatsListRequestIncludeIfItem string
const (
ThermostatsListRequestIncludeIfItemCanRemotelyUnlock ThermostatsListRequestIncludeIfItem = "can_remotely_unlock"
ThermostatsListRequestIncludeIfItemCanRemotelyLock ThermostatsListRequestIncludeIfItem = "can_remotely_lock"
ThermostatsListRequestIncludeIfItemCanProgramOfflineAccessCodes ThermostatsListRequestIncludeIfItem = "can_program_offline_access_codes"
ThermostatsListRequestIncludeIfItemCanProgramOnlineAccessCodes ThermostatsListRequestIncludeIfItem = "can_program_online_access_codes"
ThermostatsListRequestIncludeIfItemCanSimulateRemoval ThermostatsListRequestIncludeIfItem = "can_simulate_removal"
)
func NewThermostatsListRequestIncludeIfItemFromString(s string) (ThermostatsListRequestIncludeIfItem, error) {
switch s {
case "can_remotely_unlock":
return ThermostatsListRequestIncludeIfItemCanRemotelyUnlock, nil
case "can_remotely_lock":
return ThermostatsListRequestIncludeIfItemCanRemotelyLock, nil
case "can_program_offline_access_codes":
return ThermostatsListRequestIncludeIfItemCanProgramOfflineAccessCodes, nil
case "can_program_online_access_codes":
return ThermostatsListRequestIncludeIfItemCanProgramOnlineAccessCodes, nil
case "can_simulate_removal":
return ThermostatsListRequestIncludeIfItemCanSimulateRemoval, nil
}
var t ThermostatsListRequestIncludeIfItem
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (t ThermostatsListRequestIncludeIfItem) Ptr() *ThermostatsListRequestIncludeIfItem {
return &t
}
type ThermostatsListResponse struct {
Thermostats []*Device `json:"thermostats,omitempty" url:"thermostats,omitempty"`
Ok bool `json:"ok" url:"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 {
ActionAttempt *ActionAttempt `json:"action_attempt,omitempty" url:"action_attempt,omitempty"`
Ok bool `json:"ok" url:"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 {
ActionAttempt *ActionAttempt `json:"action_attempt,omitempty" url:"action_attempt,omitempty"`
Ok bool `json:"ok" url:"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" url:"automatic_heating_enabled,omitempty"`
AutomaticCoolingEnabled *bool `json:"automatic_cooling_enabled,omitempty" url:"automatic_cooling_enabled,omitempty"`
HvacModeSetting *ThermostatsUpdateRequestDefaultClimateSettingHvacModeSetting `json:"hvac_mode_setting,omitempty" url:"hvac_mode_setting,omitempty"`
CoolingSetPointCelsius *float64 `json:"cooling_set_point_celsius,omitempty" url:"cooling_set_point_celsius,omitempty"`
HeatingSetPointCelsius *float64 `json:"heating_set_point_celsius,omitempty" url:"heating_set_point_celsius,omitempty"`
CoolingSetPointFahrenheit *float64 `json:"cooling_set_point_fahrenheit,omitempty" url:"cooling_set_point_fahrenheit,omitempty"`
HeatingSetPointFahrenheit *float64 `json:"heating_set_point_fahrenheit,omitempty" url:"heating_set_point_fahrenheit,omitempty"`
ManualOverrideAllowed *bool `json:"manual_override_allowed,omitempty" url:"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" url:"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" url:"device_id"`
DefaultClimateSetting *ThermostatsUpdateRequestDefaultClimateSetting `json:"default_climate_setting,omitempty" url:"default_climate_setting,omitempty"`
}