Set the list of labels on the message.
(self, labels)
| 1919 | return self._labels[:] |
| 1920 | |
| 1921 | def set_labels(self, labels): |
| 1922 | """Set the list of labels on the message.""" |
| 1923 | self._labels = list(labels) |
| 1924 | |
| 1925 | def add_label(self, label): |
| 1926 | """Add label to list of labels on the message.""" |