summaryrefslogtreecommitdiff
path: root/service/app/leap/client.py
blob: 5f9020fdb20798a2f844270e5c9d19456601ae8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
class Client:

    def __init__(self, account):
        pass
                

    def mails(self, query):
        raise NotImplementedError()


    def drafts(self):
        raise NotImplementedError()


    def mail(self, mail_id):
        raise NotImplementedError()


    def thread(self, thread_id):
        raise NotImplementedError()


    def mark_as_read(self, mail_id):
        raise NotImplementedError()


    def tags_for_thread(self, thread):
        raise NotImplementedError()


    def add_tag_to_thread(self, thread_id, tag):
        raise NotImplementedError()


    def remove_tag_from_thread(self, thread_id, tag):
        raise NotImplementedError()


    def delete_mail(self, mail_id):
        raise NotImplementedError()


    def save_draft(self, draft):
        raise NotImplementedError()


    def send_draft(self, draft):
        raise NotImplementedError()


    def draft_reply_for(self, mail_id):
        raise NotImplementedError()


    def all_tags(self):
        raise NotImplementedError()


    def all_contacts(self, query):
        raise NotImplementedError()