Provider-agnostic text message block.
| 41 | |
| 42 | @dataclass(frozen=True, slots=True) |
| 43 | class TextMessageBlock: |
| 44 | """Provider-agnostic text message block.""" |
| 45 | |
| 46 | text: str |
| 47 | type: str = "text" |
| 48 | |
| 49 | |
| 50 | @dataclass(frozen=True, slots=True) |
no outgoing calls
no test coverage detected