api(deltachat-rpc-client): add Contact.make_vcard()

This commit is contained in:
link2xt
2024-05-17 23:39:43 +00:00
parent d0844c3e62
commit 8de92e54eb

View File

@@ -60,3 +60,6 @@ class Contact:
self.account,
self._rpc.create_chat_by_contact_id(self.account.id, self.id),
)
def make_vcard(self) -> str:
return self._rpc.make_vcard(self.account.id, [self.id])