Skip to content

Commit

Permalink
Release v0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Oct 9, 2023
1 parent 838dad6 commit 6252880
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
13 changes: 13 additions & 0 deletions august_device_metadata.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// This file was auto-generated by Fern from our API Definition.

package api

type AugustDeviceMetadata struct {
LockId string `json:"lock_id"`
LockName string `json:"lock_name"`
HouseName string `json:"house_name"`
HouseId *string `json:"house_id,omitempty"`
HasKeypad bool `json:"has_keypad"`
Model *string `json:"model,omitempty"`
KeypadBatteryLevel *string `json:"keypad_battery_level,omitempty"`
}
9 changes: 6 additions & 3 deletions device_properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
package api

type DeviceProperties struct {
Online bool `json:"online"`
Name string `json:"name"`
Model *DevicePropertiesModel `json:"model,omitempty"`
Online bool `json:"online"`
Name string `json:"name"`
Model *DevicePropertiesModel `json:"model,omitempty"`
AugustMetadata *AugustDeviceMetadata `json:"august_metadata,omitempty"`
SchlageMetadata *SchlageDeviceMetadata `json:"schlage_metadata,omitempty"`
SmartthingsMetadata any `json:"smartthings_metadata,omitempty"`
}
7 changes: 7 additions & 0 deletions nuki_device_metadata.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// This file was auto-generated by Fern from our API Definition.

package api

type NukiDeviceMetadata struct {
KeypadBatteryCritical *bool `json:"keypad_battery_critical,omitempty"`
}
11 changes: 11 additions & 0 deletions schlage_device_metadata.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// This file was auto-generated by Fern from our API Definition.

package api

type SchlageDeviceMetadata struct {
DeviceId string `json:"device_id"`
DeviceName string `json:"device_name"`
AccessCodeLength int `json:"access_code_length"`
Model *string `json:"model,omitempty"`
LocationId *string `json:"location_id,omitempty"`
}

0 comments on commit 6252880

Please sign in to comment.