adding confirm_status in devices

This commit is contained in:
Cayo Puigdefabregas 2021-05-27 15:56:10 +02:00
parent f8944df312
commit 6142b89f41
1 changed files with 7 additions and 0 deletions

View File

@ -262,6 +262,13 @@ class Device(Thing):
action = self.last_action_of(*states.Trading.actions())
return states.Trading(action.__class__)
@property
def confirm_status(self):
"""The actual state of confirmation of one Trade, or None if no Trade action
has ever been performed to this device."""
# TODO @cayop we need implement this functionality
return None
@property
def physical(self):
"""The actual physical state, None otherwise."""