Set the list of labels on the message.
(self, labels)
| 1912 | return self._labels[:] |
| 1913 | |
| 1914 | def set_labels(self, labels): |
| 1915 | """Set the list of labels on the message.""" |
| 1916 | self._labels = list(labels) |
| 1917 | |
| 1918 | def add_label(self, label): |
| 1919 | """Add label to list of labels on the message.""" |