Class: Seam::Clients::Locks

Inherits:
BaseClient show all
Defined in:
lib/seam/clients/locks.rb

Instance Attribute Summary

Attributes inherited from BaseClient

#client

Instance Method Summary collapse

Methods inherited from BaseClient

#initialize, #request_seam, #request_seam_object

Constructor Details

This class inherits a constructor from Seam::Clients::BaseClient

Instance Method Details

#get(device_id: nil, name: nil) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/seam/clients/locks.rb', line 6

def get(device_id: nil, name: nil)
  request_seam_object(
    :post,
    "/locks/get",
    Seam::Device,
    "device",
    body: {device_id: device_id, name: name}.compact
  )
end

#list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil) ⇒ Object



16
17
18
19
20
21
22
23
24
# File 'lib/seam/clients/locks.rb', line 16

def list(connect_webview_id: nil, connected_account_id: nil, connected_account_ids: nil, created_before: nil, custom_metadata_has: nil, device_ids: nil, device_types: nil, exclude_if: nil, include_if: nil, limit: nil, manufacturer: nil, user_identifier_key: nil)
  request_seam_object(
    :post,
    "/locks/list",
    Seam::Device,
    "devices",
    body: {connect_webview_id: connect_webview_id, connected_account_id: , connected_account_ids: , created_before: created_before, custom_metadata_has: , device_ids: device_ids, device_types: device_types, exclude_if: exclude_if, include_if: include_if, limit: limit, manufacturer: manufacturer, user_identifier_key: user_identifier_key}.compact
  )
end

#lock_door(device_id:, sync: nil, wait_for_action_attempt: nil) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/seam/clients/locks.rb', line 26

def lock_door(device_id:, sync: nil, wait_for_action_attempt: nil)
  action_attempt = request_seam_object(
    :post,
    "/locks/lock_door",
    Seam::ActionAttempt,
    "action_attempt",
    body: {device_id: device_id, sync: sync}.compact
  )

  action_attempt.decide_and_wait(wait_for_action_attempt)
  action_attempt
end

#unlock_door(device_id:, sync: nil, wait_for_action_attempt: nil) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/seam/clients/locks.rb', line 39

def unlock_door(device_id:, sync: nil, wait_for_action_attempt: nil)
  action_attempt = request_seam_object(
    :post,
    "/locks/unlock_door",
    Seam::ActionAttempt,
    "action_attempt",
    body: {device_id: device_id, sync: sync}.compact
  )

  action_attempt.decide_and_wait(wait_for_action_attempt)
  action_attempt
end