We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeea80c commit 6b2cfbcCopy full SHA for 6b2cfbc
twitchio/models/eventsub_.py
@@ -1273,6 +1273,21 @@ def __repr__(self) -> str:
1273
1274
1275
class BaseChatMessage(_ResponderEvent):
1276
+ """
1277
+ Represents the base attributes of a chat message.
1278
+
1279
+ Attributes
1280
+ ----------
1281
+ id: str
1282
+ The ID of the message
1283
+ text: str
1284
+ The chat message in plain text.
1285
+ broadcaster: PartialUser
1286
+ The broadcaster whose room recieved the message.
1287
+ fragments: list[ChatMessageFragment]
1288
+ The chat message fragments.
1289
1290
1291
__slots__ = (
1292
"broadcaster",
1293
"fragments",
0 commit comments