(self)
| 297 | """The time at which the message was sent or received.""" |
| 298 | |
| 299 | def __str__(self) -> str: |
| 300 | return "\r\n".join( |
| 301 | map( |
| 302 | str, |
| 303 | itertools.chain( |
| 304 | self.questions, self.answers, self.authorities, self.additionals |
| 305 | ), |
| 306 | ) |
| 307 | ) |
| 308 | |
| 309 | @property |
| 310 | def content(self) -> bytes: |