simplegmail icon indicating copy to clipboard operation
simplegmail copied to clipboard

Add new fields to label

Open rasa opened this issue 3 years ago • 0 comments

This adds all the fields returned by the labels.list API.

Example:

gmail = simplegmail.Gmail()

labels = gmail.list_labels()
for label in labels:
    print(label.name, label.id, label.type, label.messageListVisibility, label.labelListVisibility)

It also adds a predefined CHAT label, which was missing.

rasa avatar Apr 21 '22 16:04 rasa