diff --git a/deltachat-rpc-client/src/deltachat_rpc_client/account.py b/deltachat-rpc-client/src/deltachat_rpc_client/account.py index 5c2395be3..a3d073e69 100644 --- a/deltachat-rpc-client/src/deltachat_rpc_client/account.py +++ b/deltachat-rpc-client/src/deltachat_rpc_client/account.py @@ -205,6 +205,11 @@ class Account: """This account's identity as a Contact.""" return Contact(self, SpecialContactId.SELF) + @property + def device_contact(self) -> Chat: + """This account's device contact.""" + return Contact(self, SpecialContactId.DEVICE) + def get_chatlist( self, query: Optional[str] = None,