コード例 #1
0
    def select_notifications(self, where):
        find_where = dictToWhere(where)
        records = yield Notification.find(where=find_where)
        items = []
        for record in records:
            items.append(instance_properties(record, "_"))

        return items
コード例 #2
0
 def available_state_extra_attributes(self):
     return instance_properties(self, startswith_filter="STATE_EXTRA_")
コード例 #3
0
 def available_state_modes_values(self):
     return instance_properties(self, startswith_filter="STATE_MODES_")
コード例 #4
0
ファイル: _device.py プロジェクト: novski/yombo-gateway
 def available_status_extra_attributes(self):
     return instance_properties(self, startswith_filter='STATUS_EXTRA_')
コード例 #5
0
ファイル: _device.py プロジェクト: novski/yombo-gateway
 def available_status_modes_values(self):
     return instance_properties(self, startswith_filter='STATUS_MODES_')