Name of the recipient :getter: Get the name :setter: Set and update the name :type: str
(self)
| 151 | |
| 152 | @property |
| 153 | def name(self): |
| 154 | """ Name of the recipient |
| 155 | |
| 156 | :getter: Get the name |
| 157 | :setter: Set and update the name |
| 158 | :type: str |
| 159 | """ |
| 160 | return self._name |
| 161 | |
| 162 | @name.setter |
| 163 | def name(self, value): |
nothing calls this directly
no test coverage detected