Set the list of labels on the message.
(self, labels)
| 1838 | return self._labels[:] |
| 1839 | |
| 1840 | def set_labels(self, labels): |
| 1841 | """Set the list of labels on the message.""" |
| 1842 | self._labels = list(labels) |
| 1843 | |
| 1844 | def add_label(self, label): |
| 1845 | """Add label to list of labels on the message.""" |