Importance of the message :getter: Get the current priority of the message :setter: Set a different importance level :type: str or ImportanceLevel
(self)
| 553 | |
| 554 | @property |
| 555 | def importance(self): |
| 556 | """ Importance of the message |
| 557 | |
| 558 | :getter: Get the current priority of the message |
| 559 | :setter: Set a different importance level |
| 560 | :type: str or ImportanceLevel |
| 561 | """ |
| 562 | return self.__importance |
| 563 | |
| 564 | @importance.setter |
| 565 | def importance(self, value): |
nothing calls this directly
no test coverage detected