Email address of the recipient :getter: Get the email address :setter: Set and update the email address :type: str
(self)
| 136 | |
| 137 | @property |
| 138 | def address(self): |
| 139 | """ Email address of the recipient |
| 140 | |
| 141 | :getter: Get the email address |
| 142 | :setter: Set and update the email address |
| 143 | :type: str |
| 144 | """ |
| 145 | return self._address |
| 146 | |
| 147 | @address.setter |
| 148 | def address(self, value): |
nothing calls this directly
no test coverage detected