seam 2.157.0 → 2.158.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/lib/seam/resources/access_code.rb +18 -18
  4. data/lib/seam/resources/access_grant.rb +4 -4
  5. data/lib/seam/resources/access_method.rb +9 -9
  6. data/lib/seam/resources/acs_access_group.rb +3 -3
  7. data/lib/seam/resources/acs_credential.rb +35 -35
  8. data/lib/seam/resources/acs_encoder.rb +10 -10
  9. data/lib/seam/resources/acs_entrance.rb +20 -20
  10. data/lib/seam/resources/acs_system.rb +37 -37
  11. data/lib/seam/resources/acs_user.rb +35 -35
  12. data/lib/seam/resources/action_attempt.rb +101 -101
  13. data/lib/seam/resources/batch.rb +30 -30
  14. data/lib/seam/resources/client_session.rb +12 -12
  15. data/lib/seam/resources/connect_webview.rb +6 -6
  16. data/lib/seam/resources/connected_account.rb +9 -9
  17. data/lib/seam/resources/device.rb +84 -84
  18. data/lib/seam/resources/event.rb +60 -60
  19. data/lib/seam/resources/noise_threshold.rb +2 -2
  20. data/lib/seam/resources/phone.rb +1 -1
  21. data/lib/seam/resources/thermostat_daily_program.rb +1 -1
  22. data/lib/seam/resources/thermostat_schedule.rb +11 -11
  23. data/lib/seam/resources/unmanaged_access_code.rb +15 -15
  24. data/lib/seam/resources/unmanaged_access_grant.rb +4 -4
  25. data/lib/seam/resources/unmanaged_access_method.rb +9 -9
  26. data/lib/seam/resources/unmanaged_device.rb +10 -10
  27. data/lib/seam/resources/user_identity.rb +1 -1
  28. data/lib/seam/resources/webhook.rb +4 -4
  29. data/lib/seam/resources/workspace.rb +12 -12
  30. data/lib/seam/routes/access_codes.rb +28 -28
  31. data/lib/seam/routes/access_codes_simulate.rb +1 -1
  32. data/lib/seam/routes/access_codes_unmanaged.rb +9 -9
  33. data/lib/seam/routes/access_grants.rb +3 -3
  34. data/lib/seam/routes/access_methods.rb +2 -2
  35. data/lib/seam/routes/acs_access_groups.rb +7 -7
  36. data/lib/seam/routes/acs_credentials.rb +11 -11
  37. data/lib/seam/routes/acs_encoders.rb +5 -5
  38. data/lib/seam/routes/acs_encoders_simulate.rb +4 -4
  39. data/lib/seam/routes/acs_entrances.rb +5 -5
  40. data/lib/seam/routes/acs_systems.rb +3 -3
  41. data/lib/seam/routes/acs_users.rb +16 -16
  42. data/lib/seam/routes/action_attempts.rb +2 -2
  43. data/lib/seam/routes/client_sessions.rb +22 -22
  44. data/lib/seam/routes/connect_webviews.rb +11 -11
  45. data/lib/seam/routes/connected_accounts.rb +7 -7
  46. data/lib/seam/routes/connected_accounts_simulate.rb +1 -1
  47. data/lib/seam/routes/devices.rb +9 -9
  48. data/lib/seam/routes/devices_simulate.rb +3 -3
  49. data/lib/seam/routes/devices_unmanaged.rb +6 -6
  50. data/lib/seam/routes/events.rb +2 -2
  51. data/lib/seam/routes/instant_keys.rb +3 -3
  52. data/lib/seam/routes/locks.rb +5 -5
  53. data/lib/seam/routes/locks_simulate.rb +2 -2
  54. data/lib/seam/routes/noise_sensors.rb +1 -1
  55. data/lib/seam/routes/noise_sensors_noise_thresholds.rb +7 -7
  56. data/lib/seam/routes/noise_sensors_simulate.rb +1 -1
  57. data/lib/seam/routes/phones.rb +4 -4
  58. data/lib/seam/routes/phones_simulate.rb +1 -1
  59. data/lib/seam/routes/spaces.rb +4 -4
  60. data/lib/seam/routes/thermostats.rb +43 -43
  61. data/lib/seam/routes/thermostats_schedules.rb +11 -11
  62. data/lib/seam/routes/thermostats_simulate.rb +6 -6
  63. data/lib/seam/routes/user_identities.rb +15 -15
  64. data/lib/seam/routes/user_identities_unmanaged.rb +3 -3
  65. data/lib/seam/routes/webhooks.rb +5 -5
  66. data/lib/seam/routes/workspaces.rb +8 -8
  67. data/lib/seam/version.rb +1 -1
  68. metadata +1 -1
@@ -4,7 +4,7 @@ module Seam
4
4
  module Resources
5
5
  # Represents a Seam event. Known event types load as subclasses; unknown event types remain SeamEvent instances for forward compatibility.
6
6
  class SeamEvent < BaseResource
7
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was created.
7
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was created.
8
8
  class AccessCodeCreated < SeamEvent
9
9
  # ID of the affected access code.
10
10
  # @return [String]
@@ -42,7 +42,7 @@ module Seam
42
42
  date_accessor :occurred_at
43
43
  end
44
44
 
45
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was changed.
45
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was changed.
46
46
  class AccessCodeChanged < SeamEvent
47
47
  class ChangedProperties < BaseResource
48
48
  # Previous value of the property, or null if not set.
@@ -98,7 +98,7 @@ module Seam
98
98
  date_accessor :occurred_at
99
99
  end
100
100
 
101
- # The name of an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was changed on the device.
101
+ # The name of an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was changed on the device.
102
102
  class AccessCodeNameChanged < SeamEvent
103
103
  class From < BaseResource
104
104
  # Previous name of the access code.
@@ -157,7 +157,7 @@ module Seam
157
157
  date_accessor :occurred_at
158
158
  end
159
159
 
160
- # The pin code of an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was changed on the device.
160
+ # The pin code of an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was changed on the device.
161
161
  class AccessCodeCodeChanged < SeamEvent
162
162
  class From < BaseResource
163
163
  # Previous pin code.
@@ -216,7 +216,7 @@ module Seam
216
216
  date_accessor :occurred_at
217
217
  end
218
218
 
219
- # The time frame of an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was changed on the device.
219
+ # The time frame of an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was changed on the device.
220
220
  class AccessCodeTimeFrameChanged < SeamEvent
221
221
  class From < BaseResource
222
222
  # Previous end time.
@@ -281,7 +281,7 @@ module Seam
281
281
  date_accessor :occurred_at
282
282
  end
283
283
 
284
- # Mutations were requested on an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes). This event fires at request time, before the change is confirmed on the device.
284
+ # Mutations were requested on an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes). This event fires at request time, before the change is confirmed on the device.
285
285
  class AccessCodeMutationsRequested < SeamEvent
286
286
  class RequestedMutations < BaseResource
287
287
  # Previous property values before the requested change. Keys depend on the mutation type. Absent for non-property mutations like `deleting`.
@@ -341,7 +341,7 @@ module Seam
341
341
  date_accessor :occurred_at
342
342
  end
343
343
 
344
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was [scheduled natively](https://docs.seam.co/low-level-apis/smart-locks/access-codes#native-scheduling) on a device.
344
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was [scheduled natively](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes#native-scheduling) on a device.
345
345
  class AccessCodeScheduledOnDevice < SeamEvent
346
346
  # ID of the affected access code.
347
347
  # @return [String]
@@ -382,7 +382,7 @@ module Seam
382
382
  date_accessor :occurred_at
383
383
  end
384
384
 
385
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was set on a device.
385
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was set on a device.
386
386
  class AccessCodeSetOnDevice < SeamEvent
387
387
  # ID of the affected access code.
388
388
  # @return [String]
@@ -423,7 +423,7 @@ module Seam
423
423
  date_accessor :occurred_at
424
424
  end
425
425
 
426
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was removed from a device.
426
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was removed from a device.
427
427
  class AccessCodeRemovedFromDevice < SeamEvent
428
428
  # ID of the affected access code.
429
429
  # @return [String]
@@ -461,7 +461,7 @@ module Seam
461
461
  date_accessor :occurred_at
462
462
  end
463
463
 
464
- # There was an unusually long delay in setting an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) on a device.
464
+ # There was an unusually long delay in setting an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) on a device.
465
465
  class AccessCodeDelayInSettingOnDevice < SeamEvent
466
466
  class AccessCodeErrors < BaseResource
467
467
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -589,7 +589,7 @@ module Seam
589
589
  date_accessor :occurred_at
590
590
  end
591
591
 
592
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) failed to be set on a device.
592
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) failed to be set on a device.
593
593
  class AccessCodeFailedToSetOnDevice < SeamEvent
594
594
  class AccessCodeErrors < BaseResource
595
595
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -717,7 +717,7 @@ module Seam
717
717
  date_accessor :occurred_at
718
718
  end
719
719
 
720
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was deleted.
720
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was deleted.
721
721
  class AccessCodeDeleted < SeamEvent
722
722
  # ID of the affected access code.
723
723
  # @return [String]
@@ -758,7 +758,7 @@ module Seam
758
758
  date_accessor :occurred_at
759
759
  end
760
760
 
761
- # There was an unusually long delay in removing an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) from a device.
761
+ # There was an unusually long delay in removing an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) from a device.
762
762
  class AccessCodeDelayInRemovingFromDevice < SeamEvent
763
763
  class AccessCodeErrors < BaseResource
764
764
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -886,7 +886,7 @@ module Seam
886
886
  date_accessor :occurred_at
887
887
  end
888
888
 
889
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) failed to be removed from a device.
889
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) failed to be removed from a device.
890
890
  class AccessCodeFailedToRemoveFromDevice < SeamEvent
891
891
  class AccessCodeErrors < BaseResource
892
892
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -1014,7 +1014,7 @@ module Seam
1014
1014
  date_accessor :occurred_at
1015
1015
  end
1016
1016
 
1017
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was modified outside of Seam.
1017
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was modified outside of Seam.
1018
1018
  class AccessCodeModifiedExternalToSeam < SeamEvent
1019
1019
  # ID of the affected access code.
1020
1020
  # @return [String]
@@ -1052,7 +1052,7 @@ module Seam
1052
1052
  date_accessor :occurred_at
1053
1053
  end
1054
1054
 
1055
- # An [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was deleted outside of Seam.
1055
+ # An [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was deleted outside of Seam.
1056
1056
  class AccessCodeDeletedExternalToSeam < SeamEvent
1057
1057
  # ID of the affected access code.
1058
1058
  # @return [String]
@@ -1090,7 +1090,7 @@ module Seam
1090
1090
  date_accessor :occurred_at
1091
1091
  end
1092
1092
 
1093
- # A [backup access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device.
1093
+ # A [backup access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device.
1094
1094
  class AccessCodeBackupAccessCodePulled < SeamEvent
1095
1095
  # ID of the affected access code.
1096
1096
  # @return [String]
@@ -1131,7 +1131,7 @@ module Seam
1131
1131
  date_accessor :occurred_at
1132
1132
  end
1133
1133
 
1134
- # An [unmanaged access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code.
1134
+ # An [unmanaged access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code.
1135
1135
  class AccessCodeUnmanagedConvertedToManaged < SeamEvent
1136
1136
  # ID of the affected access code.
1137
1137
  # @return [String]
@@ -1169,7 +1169,7 @@ module Seam
1169
1169
  date_accessor :occurred_at
1170
1170
  end
1171
1171
 
1172
- # An [unmanaged access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code.
1172
+ # An [unmanaged access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code.
1173
1173
  class AccessCodeUnmanagedFailedToConvertToManaged < SeamEvent
1174
1174
  class AccessCodeErrors < BaseResource
1175
1175
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -1297,7 +1297,7 @@ module Seam
1297
1297
  date_accessor :occurred_at
1298
1298
  end
1299
1299
 
1300
- # An [unmanaged access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) was created on a device.
1300
+ # An [unmanaged access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) was created on a device.
1301
1301
  class AccessCodeUnmanagedCreated < SeamEvent
1302
1302
  # ID of the affected access code.
1303
1303
  # @return [String]
@@ -1335,7 +1335,7 @@ module Seam
1335
1335
  date_accessor :occurred_at
1336
1336
  end
1337
1337
 
1338
- # An [unmanaged access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device.
1338
+ # An [unmanaged access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device.
1339
1339
  class AccessCodeUnmanagedRemoved < SeamEvent
1340
1340
  # ID of the affected access code.
1341
1341
  # @return [String]
@@ -1456,7 +1456,7 @@ module Seam
1456
1456
  # ID of the affected Access Grant.
1457
1457
  # @return [String]
1458
1458
  attr_accessor :access_grant_id
1459
- # ID of the affected [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).
1459
+ # ID of the affected [entrance](https://www.seam.co/docs/low-level-apis/access-systems/retrieving-entrance-details).
1460
1460
  # @return [String]
1461
1461
  attr_accessor :acs_entrance_id
1462
1462
  # Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.
@@ -1485,7 +1485,7 @@ module Seam
1485
1485
  # ID of the affected Access Grant.
1486
1486
  # @return [String]
1487
1487
  attr_accessor :access_grant_id
1488
- # ID of the affected [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details).
1488
+ # ID of the affected [entrance](https://www.seam.co/docs/low-level-apis/access-systems/retrieving-entrance-details).
1489
1489
  # @return [String]
1490
1490
  attr_accessor :acs_entrance_id
1491
1491
  # Human-readable description of the event. Persisted when the event is created (so the creating code, including a provider, can supply a tailored description) and otherwise derived from the event.
@@ -1844,7 +1844,7 @@ module Seam
1844
1844
  date_accessor :occurred_at
1845
1845
  end
1846
1846
 
1847
- # An [access system](https://docs.seam.co/low-level-apis/access-systems) was connected.
1847
+ # An [access system](https://www.seam.co/docs/low-level-apis/access-systems) was connected.
1848
1848
  class AcsSystemConnected < SeamEvent
1849
1849
  # ID of the access system.
1850
1850
  # @return [String]
@@ -1873,7 +1873,7 @@ module Seam
1873
1873
  date_accessor :occurred_at
1874
1874
  end
1875
1875
 
1876
- # An [access system](https://docs.seam.co/low-level-apis/access-systems) was added.
1876
+ # An [access system](https://www.seam.co/docs/low-level-apis/access-systems) was added.
1877
1877
  class AcsSystemAdded < SeamEvent
1878
1878
  # ID of the access system.
1879
1879
  # @return [String]
@@ -1902,7 +1902,7 @@ module Seam
1902
1902
  date_accessor :occurred_at
1903
1903
  end
1904
1904
 
1905
- # An [access system](https://docs.seam.co/low-level-apis/access-systems) was disconnected.
1905
+ # An [access system](https://www.seam.co/docs/low-level-apis/access-systems) was disconnected.
1906
1906
  class AcsSystemDisconnected < SeamEvent
1907
1907
  class AcsSystemErrors < BaseResource
1908
1908
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -1991,7 +1991,7 @@ module Seam
1991
1991
  date_accessor :occurred_at
1992
1992
  end
1993
1993
 
1994
- # An [access system credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was deleted.
1994
+ # An [access system credential](https://www.seam.co/docs/low-level-apis/access-systems/managing-credentials) was deleted.
1995
1995
  class AcsCredentialDeleted < SeamEvent
1996
1996
  # ID of the affected credential.
1997
1997
  # @return [String]
@@ -2023,7 +2023,7 @@ module Seam
2023
2023
  date_accessor :occurred_at
2024
2024
  end
2025
2025
 
2026
- # An [access system credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was issued.
2026
+ # An [access system credential](https://www.seam.co/docs/low-level-apis/access-systems/managing-credentials) was issued.
2027
2027
  class AcsCredentialIssued < SeamEvent
2028
2028
  # ID of the affected credential.
2029
2029
  # @return [String]
@@ -2055,7 +2055,7 @@ module Seam
2055
2055
  date_accessor :occurred_at
2056
2056
  end
2057
2057
 
2058
- # An [access system credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was reissued.
2058
+ # An [access system credential](https://www.seam.co/docs/low-level-apis/access-systems/managing-credentials) was reissued.
2059
2059
  class AcsCredentialReissued < SeamEvent
2060
2060
  # ID of the affected credential.
2061
2061
  # @return [String]
@@ -2087,7 +2087,7 @@ module Seam
2087
2087
  date_accessor :occurred_at
2088
2088
  end
2089
2089
 
2090
- # An [access system credential](https://docs.seam.co/low-level-apis/access-systems/managing-credentials) was invalidated. That is, the credential cannot be used anymore.
2090
+ # An [access system credential](https://www.seam.co/docs/low-level-apis/access-systems/managing-credentials) was invalidated. That is, the credential cannot be used anymore.
2091
2091
  class AcsCredentialInvalidated < SeamEvent
2092
2092
  # ID of the affected credential.
2093
2093
  # @return [String]
@@ -2119,7 +2119,7 @@ module Seam
2119
2119
  date_accessor :occurred_at
2120
2120
  end
2121
2121
 
2122
- # An [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) was created.
2122
+ # An [access system user](https://www.seam.co/docs/low-level-apis/access-systems/user-management) was created.
2123
2123
  class AcsUserCreated < SeamEvent
2124
2124
  # ID of the access system.
2125
2125
  # @return [String]
@@ -2151,7 +2151,7 @@ module Seam
2151
2151
  date_accessor :occurred_at
2152
2152
  end
2153
2153
 
2154
- # An [access system user](https://docs.seam.co/low-level-apis/access-systems/user-management) was deleted.
2154
+ # An [access system user](https://www.seam.co/docs/low-level-apis/access-systems/user-management) was deleted.
2155
2155
  class AcsUserDeleted < SeamEvent
2156
2156
  # ID of the access system.
2157
2157
  # @return [String]
@@ -2183,7 +2183,7 @@ module Seam
2183
2183
  date_accessor :occurred_at
2184
2184
  end
2185
2185
 
2186
- # An [access system encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners) was added.
2186
+ # An [access system encoder](https://www.seam.co/docs/low-level-apis/access-systems/working-with-card-encoders-and-scanners) was added.
2187
2187
  class AcsEncoderAdded < SeamEvent
2188
2188
  # ID of the affected encoder.
2189
2189
  # @return [String]
@@ -2215,7 +2215,7 @@ module Seam
2215
2215
  date_accessor :occurred_at
2216
2216
  end
2217
2217
 
2218
- # An [access system encoder](https://docs.seam.co/low-level-apis/access-systems/working-with-card-encoders-and-scanners) was removed.
2218
+ # An [access system encoder](https://www.seam.co/docs/low-level-apis/access-systems/working-with-card-encoders-and-scanners) was removed.
2219
2219
  class AcsEncoderRemoved < SeamEvent
2220
2220
  # ID of the affected encoder.
2221
2221
  # @return [String]
@@ -2279,7 +2279,7 @@ module Seam
2279
2279
  date_accessor :occurred_at
2280
2280
  end
2281
2281
 
2282
- # An [access system entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) was added.
2282
+ # An [access system entrance](https://www.seam.co/docs/low-level-apis/access-systems/retrieving-entrance-details) was added.
2283
2283
  class AcsEntranceAdded < SeamEvent
2284
2284
  # ID of the affected entrance.
2285
2285
  # @return [String]
@@ -2311,7 +2311,7 @@ module Seam
2311
2311
  date_accessor :occurred_at
2312
2312
  end
2313
2313
 
2314
- # An [access system entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) was removed.
2314
+ # An [access system entrance](https://www.seam.co/docs/low-level-apis/access-systems/retrieving-entrance-details) was removed.
2315
2315
  class AcsEntranceRemoved < SeamEvent
2316
2316
  # ID of the affected entrance.
2317
2317
  # @return [String]
@@ -3117,7 +3117,7 @@ module Seam
3117
3117
  date_accessor :occurred_at
3118
3118
  end
3119
3119
 
3120
- # A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/core-concepts/devices/managed-and-unmanaged-devices).
3120
+ # A managed device was successfully converted to an [unmanaged device](https://www.seam.co/docs/core-concepts/devices/managed-and-unmanaged-devices).
3121
3121
  class DeviceConvertedToUnmanaged < SeamEvent
3122
3122
  # Custom metadata of the connected account, present when connected_account_id is provided.
3123
3123
  # @return [Hash{String => String, Boolean}, nil]
@@ -3155,7 +3155,7 @@ module Seam
3155
3155
  date_accessor :occurred_at
3156
3156
  end
3157
3157
 
3158
- # An [unmanaged device](https://docs.seam.co/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.
3158
+ # An [unmanaged device](https://www.seam.co/docs/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.
3159
3159
  class DeviceUnmanagedConvertedToManaged < SeamEvent
3160
3160
  # Custom metadata of the connected account, present when connected_account_id is provided.
3161
3161
  # @return [Hash{String => String, Boolean}, nil]
@@ -3193,7 +3193,7 @@ module Seam
3193
3193
  date_accessor :occurred_at
3194
3194
  end
3195
3195
 
3196
- # The status of an [unmanaged device](https://docs.seam.co/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.
3196
+ # The status of an [unmanaged device](https://www.seam.co/docs/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.
3197
3197
  class DeviceUnmanagedConnected < SeamEvent
3198
3198
  # Custom metadata of the connected account, present when connected_account_id is provided.
3199
3199
  # @return [Hash{String => String, Boolean}, nil]
@@ -3336,7 +3336,7 @@ module Seam
3336
3336
  date_accessor :occurred_at
3337
3337
  end
3338
3338
 
3339
- # The status of an [unmanaged device](https://docs.seam.co/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.
3339
+ # The status of an [unmanaged device](https://www.seam.co/docs/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.
3340
3340
  class DeviceUnmanagedDisconnected < SeamEvent
3341
3341
  class ConnectedAccountErrors < BaseResource
3342
3342
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -3731,7 +3731,7 @@ module Seam
3731
3731
  date_accessor :occurred_at
3732
3732
  end
3733
3733
 
3734
- # A [Salto device](https://docs.seam.co/device-and-system-integration-guides/salto-locks) activated privacy mode.
3734
+ # A [Salto device](https://www.seam.co/docs/device-and-system-integration-guides/salto-locks) activated privacy mode.
3735
3735
  class DeviceSaltoPrivacyModeActivated < SeamEvent
3736
3736
  # Custom metadata of the connected account, present when connected_account_id is provided.
3737
3737
  # @return [Hash{String => String, Boolean}, nil]
@@ -3769,7 +3769,7 @@ module Seam
3769
3769
  date_accessor :occurred_at
3770
3770
  end
3771
3771
 
3772
- # A [Salto device](https://docs.seam.co/device-and-system-integration-guides/salto-locks) deactivated privacy mode.
3772
+ # A [Salto device](https://www.seam.co/docs/device-and-system-integration-guides/salto-locks) deactivated privacy mode.
3773
3773
  class DeviceSaltoPrivacyModeDeactivated < SeamEvent
3774
3774
  # Custom metadata of the connected account, present when connected_account_id is provided.
3775
3775
  # @return [Hash{String => String, Boolean}, nil]
@@ -4215,7 +4215,7 @@ module Seam
4215
4215
  date_accessor :occurred_at
4216
4216
  end
4217
4217
 
4218
- # Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/capability-guides/noise-sensors#what-is-a-threshold) were detected.
4218
+ # Extended periods of noise or noise exceeding a [threshold](https://www.seam.co/docs/capability-guides/noise-sensors#what-is-a-threshold) were detected.
4219
4219
  class NoiseSensorNoiseThresholdTriggered < SeamEvent
4220
4220
  # Custom metadata of the connected account, present when connected_account_id is provided.
4221
4221
  # @return [Hash{String => String, Boolean}, nil]
@@ -4271,7 +4271,7 @@ module Seam
4271
4271
  date_accessor :occurred_at
4272
4272
  end
4273
4273
 
4274
- # A [lock](https://docs.seam.co/low-level-apis/smart-locks) was locked.
4274
+ # A [lock](https://www.seam.co/docs/low-level-apis/smart-locks) was locked.
4275
4275
  class LockLocked < SeamEvent
4276
4276
  # ID of the access code that was used to lock the device.
4277
4277
  # @return [String, nil]
@@ -4338,7 +4338,7 @@ module Seam
4338
4338
  date_accessor :occurred_at
4339
4339
  end
4340
4340
 
4341
- # A [lock](https://docs.seam.co/low-level-apis/smart-locks) was unlocked.
4341
+ # A [lock](https://www.seam.co/docs/low-level-apis/smart-locks) was unlocked.
4342
4342
  class LockUnlocked < SeamEvent
4343
4343
  # ID of the access code that was used to unlock the affected device.
4344
4344
  # @return [String, nil]
@@ -4383,7 +4383,7 @@ module Seam
4383
4383
  # Whether the unlock action was performed by an NFC credential tap (such as an Apple Home Key or an NFC key fob) presented to the lock, rather than a direct physical interaction or a Seam-initiated remote action.
4384
4384
  # @return [Boolean, nil]
4385
4385
  attr_accessor :is_via_nfc
4386
- # Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined.
4386
+ # Method by which the lock was unlocked. `keycode`: an [access code](https://www.seam.co/docs/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined.
4387
4387
  # @return [String]
4388
4388
  # Known values:
4389
4389
  # - `keycode`
@@ -4405,7 +4405,7 @@ module Seam
4405
4405
  date_accessor :occurred_at
4406
4406
  end
4407
4407
 
4408
- # The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device.
4408
+ # The [lock](https://www.seam.co/docs/low-level-apis/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device.
4409
4409
  class LockAccessDenied < SeamEvent
4410
4410
  class Reason < BaseResource
4411
4411
  # Human-readable explanation of why access was denied.
@@ -4465,7 +4465,7 @@ module Seam
4465
4465
  date_accessor :occurred_at
4466
4466
  end
4467
4467
 
4468
- # A thermostat [climate preset](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.
4468
+ # A thermostat [climate preset](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.
4469
4469
  class ThermostatClimatePresetActivated < SeamEvent
4470
4470
  # Key of the climate preset that was activated.
4471
4471
  # @return [String]
@@ -4512,7 +4512,7 @@ module Seam
4512
4512
  date_accessor :occurred_at
4513
4513
  end
4514
4514
 
4515
- # A [thermostat](https://docs.seam.co/capability-guides/thermostats) was adjusted manually.
4515
+ # A [thermostat](https://www.seam.co/docs/capability-guides/thermostats) was adjusted manually.
4516
4516
  class ThermostatManuallyAdjusted < SeamEvent
4517
4517
  # Custom metadata of the connected account, present when connected_account_id is provided.
4518
4518
  # @return [Hash{String => String, Boolean}, nil]
@@ -4520,10 +4520,10 @@ module Seam
4520
4520
  # ID of the connected account associated with the event.
4521
4521
  # @return [String]
4522
4522
  attr_accessor :connected_account_id
4523
- # Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4523
+ # Temperature to which the thermostat should cool (in °C). See also [Set Points](https://www.seam.co/docs/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4524
4524
  # @return [Float, nil]
4525
4525
  attr_accessor :cooling_set_point_celsius
4526
- # Temperature to which the thermostat should cool (in °F). See also [Set Points](https://docs.seam.co/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4526
+ # Temperature to which the thermostat should cool (in °F). See also [Set Points](https://www.seam.co/docs/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4527
4527
  # @return [Float, nil]
4528
4528
  attr_accessor :cooling_set_point_fahrenheit
4529
4529
  # The customer key associated with the device, if any.
@@ -4545,20 +4545,20 @@ module Seam
4545
4545
  # Known values:
4546
4546
  # - `thermostat.manually_adjusted`
4547
4547
  attr_accessor :event_type
4548
- # Desired [fan mode setting](https://docs.seam.co/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.
4548
+ # Desired [fan mode setting](https://www.seam.co/docs/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings), such as `on`, `auto`, or `circulate`.
4549
4549
  # @return [String, nil]
4550
4550
  # Known values:
4551
4551
  # - `auto`
4552
4552
  # - `on`
4553
4553
  # - `circulate`
4554
4554
  attr_accessor :fan_mode_setting
4555
- # Temperature to which the thermostat should heat (in °C). See also [Set Points](https://docs.seam.co/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4555
+ # Temperature to which the thermostat should heat (in °C). See also [Set Points](https://www.seam.co/docs/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4556
4556
  # @return [Float, nil]
4557
4557
  attr_accessor :heating_set_point_celsius
4558
- # Temperature to which the thermostat should heat (in °F). See also [Set Points](https://docs.seam.co/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4558
+ # Temperature to which the thermostat should heat (in °F). See also [Set Points](https://www.seam.co/docs/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4559
4559
  # @return [Float, nil]
4560
4560
  attr_accessor :heating_set_point_fahrenheit
4561
- # Desired [HVAC mode](https://docs.seam.co/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`.
4561
+ # Desired [HVAC mode](https://www.seam.co/docs/capability-guides/thermostats/understanding-thermostat-concepts/hvac-mode) setting, such as `heat`, `cool`, `heat_cool`, or `off`.
4562
4562
  # @return [String, nil]
4563
4563
  # Known values:
4564
4564
  # - `off`
@@ -4584,7 +4584,7 @@ module Seam
4584
4584
  date_accessor :occurred_at
4585
4585
  end
4586
4586
 
4587
- # A [thermostat's](https://docs.seam.co/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).
4587
+ # A [thermostat's](https://www.seam.co/docs/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://www.seam.co/docs/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).
4588
4588
  class ThermostatTemperatureThresholdExceeded < SeamEvent
4589
4589
  # Custom metadata of the connected account, present when connected_account_id is provided.
4590
4590
  # @return [Hash{String => String, Boolean}, nil]
@@ -4640,7 +4640,7 @@ module Seam
4640
4640
  date_accessor :occurred_at
4641
4641
  end
4642
4642
 
4643
- # A [thermostat's](https://docs.seam.co/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).
4643
+ # A [thermostat's](https://www.seam.co/docs/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://www.seam.co/docs/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).
4644
4644
  class ThermostatTemperatureThresholdNoLongerExceeded < SeamEvent
4645
4645
  # Custom metadata of the connected account, present when connected_account_id is provided.
4646
4646
  # @return [Hash{String => String, Boolean}, nil]
@@ -4696,7 +4696,7 @@ module Seam
4696
4696
  date_accessor :occurred_at
4697
4697
  end
4698
4698
 
4699
- # A [thermostat's](https://docs.seam.co/capability-guides/thermostats) temperature reading is within 1 °C of the configured cooling or heating [set point](https://docs.seam.co/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4699
+ # A [thermostat's](https://www.seam.co/docs/capability-guides/thermostats) temperature reading is within 1 °C of the configured cooling or heating [set point](https://www.seam.co/docs/capability-guides/thermostats/understanding-thermostat-concepts/set-points).
4700
4700
  class ThermostatTemperatureReachedSetPoint < SeamEvent
4701
4701
  # Custom metadata of the connected account, present when connected_account_id is provided.
4702
4702
  # @return [Hash{String => String, Boolean}, nil]
@@ -4746,7 +4746,7 @@ module Seam
4746
4746
  date_accessor :occurred_at
4747
4747
  end
4748
4748
 
4749
- # A [thermostat's](https://docs.seam.co/capability-guides/thermostats) reported temperature changed by at least 1 °C.
4749
+ # A [thermostat's](https://www.seam.co/docs/capability-guides/thermostats) reported temperature changed by at least 1 °C.
4750
4750
  class ThermostatTemperatureChanged < SeamEvent
4751
4751
  # Custom metadata of the connected account, present when connected_account_id is provided.
4752
4752
  # @return [Hash{String => String, Boolean}, nil]
@@ -5092,7 +5092,7 @@ module Seam
5092
5092
  # - `access_code.delay_in_issuing`
5093
5093
  # - `access_code.failed_to_issue`
5094
5094
  # - `access_code.failed_to_update`
5095
- # - `access_code.failed_to_expire`
5095
+ # - `access_code.failed_to_remove`
5096
5096
  # - `access_code.deleted`
5097
5097
  # - `access_code.delay_in_removing_from_device`
5098
5098
  # - `access_code.failed_to_remove_from_device`
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Seam
4
4
  module Resources
5
- # Represents a [noise threshold](https://docs.seam.co/capability-guides/noise-sensors/configure-noise-threshold-settings) for a [noise sensor](https://docs.seam.co/capability-guides/noise-sensors). Thresholds represent the limits of noise tolerated at a property, which can be customized for each hour of the day. Each device has its own default thresholds, but you can use the Seam API to modify them.
5
+ # Represents a [noise threshold](https://www.seam.co/docs/capability-guides/noise-sensors/configure-noise-threshold-settings) for a [noise sensor](https://www.seam.co/docs/capability-guides/noise-sensors). Thresholds represent the limits of noise tolerated at a property, which can be customized for each hour of the day. Each device has its own default thresholds, but you can use the Seam API to modify them.
6
6
  class NoiseThreshold < BaseResource
7
7
  # Unique identifier for the device that contains the noise threshold.
8
8
  # @return [String]
@@ -19,7 +19,7 @@ module Seam
19
19
  # Unique identifier for the noise threshold.
20
20
  # @return [String]
21
21
  attr_accessor :noise_threshold_id
22
- # Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for [Noiseaware sensors](https://docs.seam.co/device-and-system-integration-guides/noiseaware-sensors).
22
+ # Noise level in Noiseaware Noise Risk Score (NRS) for the noise threshold. This parameter is only relevant for [Noiseaware sensors](https://www.seam.co/docs/device-and-system-integration-guides/noiseaware-sensors).
23
23
  # @return [Float, nil]
24
24
  attr_accessor :noise_threshold_nrs
25
25
  # Time at which the noise threshold should become active daily.
@@ -70,7 +70,7 @@ module Seam
70
70
  # Warnings associated with the phone.
71
71
  # @return [Array<Warnings>]
72
72
  resource_list_accessor :warnings, Warnings
73
- # Optional [custom metadata](https://docs.seam.co/core-concepts/devices/adding-custom-metadata-to-a-device) for the phone.
73
+ # Optional [custom metadata](https://www.seam.co/docs/core-concepts/devices/adding-custom-metadata-to-a-device) for the phone.
74
74
  # @return [Hash{String => String, Boolean}]
75
75
  attr_accessor :custom_metadata
76
76
  # ID of the phone.
@@ -5,7 +5,7 @@ module Seam
5
5
  # Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.
6
6
  class ThermostatDailyProgram < BaseResource
7
7
  class Periods < BaseResource
8
- # Key of the [climate preset](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.
8
+ # Key of the [climate preset](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.
9
9
  # @return [String]
10
10
  attr_accessor :climate_preset_key
11
11
  # Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Seam
4
4
  module Resources
5
- # Represents a [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that activates a configured [climate preset](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-climate-presets) on a [thermostat](https://docs.seam.co/capability-guides/thermostats) at a specified starting time and deactivates the climate preset at a specified ending time.
5
+ # Represents a [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that activates a configured [climate preset](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-climate-presets) on a [thermostat](https://www.seam.co/docs/capability-guides/thermostats) at a specified starting time and deactivates the climate preset at a specified ending time.
6
6
  class ThermostatSchedule < BaseResource
7
7
  class Errors < BaseResource
8
8
  # Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
@@ -16,40 +16,40 @@ module Seam
16
16
  date_accessor :created_at
17
17
  end
18
18
 
19
- # Errors associated with the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
19
+ # Errors associated with the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
20
20
  # @return [Array<Errors>]
21
21
  resource_list_accessor :errors, Errors
22
- # Key of the [climate preset](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
22
+ # Key of the [climate preset](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
23
23
  # @return [String]
24
24
  attr_accessor :climate_preset_key
25
- # ID of the desired [thermostat](https://docs.seam.co/capability-guides/thermostats) device.
25
+ # ID of the desired [thermostat](https://www.seam.co/docs/capability-guides/thermostats) device.
26
26
  # @return [String]
27
27
  attr_accessor :device_id
28
- # Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts.
28
+ # Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts.
29
29
  # @return [Boolean, nil]
30
30
  attr_accessor :is_override_allowed
31
- # Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
31
+ # Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
32
32
  # @return [Integer, nil]
33
33
  attr_accessor :max_override_period_minutes
34
- # User-friendly name to identify the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
34
+ # User-friendly name to identify the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
35
35
  # @return [String, nil]
36
36
  attr_accessor :name
37
- # ID of the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
37
+ # ID of the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules).
38
38
  # @return [String]
39
39
  attr_accessor :thermostat_schedule_id
40
40
  # ID of the workspace that contains the thermostat schedule.
41
41
  # @return [String]
42
42
  attr_accessor :workspace_id
43
43
 
44
- # Date and time at which the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules) was created.
44
+ # Date and time at which the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules) was created.
45
45
  # @return [Time]
46
46
  date_accessor :created_at
47
47
 
48
- # Date and time at which the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules) ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
48
+ # Date and time at which the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules) ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
49
49
  # @return [Time]
50
50
  date_accessor :ends_at
51
51
 
52
- # Date and time at which the [thermostat schedule](https://docs.seam.co/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
52
+ # Date and time at which the [thermostat schedule](https://www.seam.co/docs/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.
53
53
  # @return [Time]
54
54
  date_accessor :starts_at
55
55
  end