Return a shallow copy of the object.
(self: _BaseChatSelf)
| 147 | return self.name |
| 148 | |
| 149 | def copy(self: _BaseChatSelf) -> _BaseChatSelf: |
| 150 | """Return a shallow copy of the object.""" |
| 151 | return copy.copy(self) |
| 152 | |
| 153 | @abstractmethod |
| 154 | def verify(self): |
no outgoing calls