Skip to content

Commit e09c710

Browse files
chillymoshIAmTomahawkx
authored andcommitted
Update models.py
1 parent 3e4d4d6 commit e09c710

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

twitchio/ext/eventsub/models.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,9 +1627,9 @@ class ChannelUnbanRequestCreateData(EventData):
16271627
-----------
16281628
id: :class:`str`
16291629
The ID of the ban request.
1630-
broadcaster: :class:`PartialUser`
1630+
broadcaster: :class:`~twitchio.PartialUser`
16311631
The broadcaster from which the user was banned.
1632-
user: :class:`PartialUser`
1632+
user: :class:`~twitchio.PartialUser`
16331633
The user that was banned.
16341634
text: :class:`str`
16351635
The unban request text the user submitted.
@@ -1655,11 +1655,11 @@ class ChannelUnbanRequestResolveData(EventData):
16551655
-----------
16561656
id: :class:`str`
16571657
The ID of the ban request.
1658-
broadcaster: :class:`PartialUser`
1658+
broadcaster: :class:`~twitchio.PartialUser`
16591659
The broadcaster from which the user was banned.
1660-
user: :class:`PartialUser`
1660+
user: :class:`~twitchio.PartialUser`
16611661
The user that was banned.
1662-
moderator: :class:`PartialUser`
1662+
moderator: :class:`~twitchio.PartialUser`
16631663
The moderator that handled this unban request.
16641664
resolution_text: :class:`str`
16651665
The reasoning provided by the moderator.
@@ -1687,9 +1687,9 @@ class AutomodMessageHoldData(EventData):
16871687
The ID of the message.
16881688
message_content: :class:`str`
16891689
The contents of the message
1690-
broadcaster: :class:`PartialUser`
1690+
broadcaster: :class:`~twitchio.PartialUser`
16911691
The broadcaster from which the message was held.
1692-
user: :class:`PartialUser`
1692+
user: :class:`~twitchio.PartialUser`
16931693
The user that sent the message.
16941694
level: :class:`int`
16951695
The level of alarm raised for this message.
@@ -1758,11 +1758,11 @@ class AutomodMessageUpdateData(EventData):
17581758
The ID of the message.
17591759
message_content: :class:`str`
17601760
The contents of the message
1761-
broadcaster: :class:`PartialUser`
1761+
broadcaster: :class:`~twitchio.PartialUser`
17621762
The broadcaster from which the message was held.
1763-
user: :class:`PartialUser`
1763+
user: :class:`~twitchio.PartialUser`
17641764
The user that sent the message.
1765-
moderator: :class:`PartialUser`
1765+
moderator: :class:`~twitchio.PartialUser`
17661766
The moderator that updated the message status.
17671767
status: :class:`str`
17681768
The new status of the message. Typically one of ``approved`` or ``denied``.
@@ -1833,9 +1833,9 @@ class AutomodSettingsUpdateData(EventData):
18331833
18341834
Attributes
18351835
------------
1836-
broadcaster: :class:`PartialUser`
1836+
broadcaster: :class:`~twitchio.PartialUser`
18371837
The broadcaster for which the settings were updated.
1838-
moderator: :class:`PartialUser`
1838+
moderator: :class:`~twitchio.PartialUser`
18391839
The moderator that updated the settings.
18401840
overall :class:`int` | ``None``
18411841
The overall level of automod aggressiveness.
@@ -1895,9 +1895,9 @@ class AutomodTermsUpdateData(EventData):
18951895
18961896
Attributes
18971897
-----------
1898-
broadcaster: :class:`PartialUser`
1898+
broadcaster: :class:`~twitchio.PartialUser`
18991899
The broadcaster for which the terms were updated.
1900-
moderator: :class:`PartialUser`
1900+
moderator: :class:`~twitchio.PartialUser`
19011901
The moderator who updated the terms.
19021902
action: :class:`str`
19031903
The action type.
@@ -1923,9 +1923,9 @@ class ChannelModerateData(EventData):
19231923
19241924
Attributes
19251925
-----------
1926-
broadcaster: :class:`PartialUser`
1926+
broadcaster: :class:`~twitchio.PartialUser`
19271927
The channel where the moderation event occurred.
1928-
moderator: :class:`PartialUser`
1928+
moderator: :class:`~twitchio.PartialUser`
19291929
The moderator who performed the action.
19301930
action: :class:`str`
19311931
The action performed.
@@ -1937,9 +1937,9 @@ class ChannelModerateData(EventData):
19371937
Metadata associated with the vip command.
19381938
unvip: Optional[:class:`VIPStatus`]
19391939
Metadata associated with the vip command.
1940-
mod: Optional[:class:`ModStatus`]
1940+
mod: Optional[:class:`ModeratorStatus`]
19411941
Metadata associated with the mod command.
1942-
unmod: Optional[:class:`ModStatus`]
1942+
unmod: Optional[:class:`ModeratorStatus`]
19431943
Metadata associated with the mod command.
19441944
ban: Optional[:class:`BanStatus`]
19451945
Metadata associated with the ban command.
@@ -2014,7 +2014,7 @@ class VIPStatus:
20142014
20152015
Attributes
20162016
-----------
2017-
user: :class:`PartialUser`
2017+
user: :class:`~twitchio.PartialUser`
20182018
The user who is gaining or losing VIP access.
20192019
"""
20202020

@@ -2027,7 +2027,7 @@ class ModeratorStatus:
20272027
20282028
Attributes
20292029
-----------
2030-
user: :class:`PartialUser`
2030+
user: :class:`~twitchio.PartialUser`
20312031
The user who is gaining or losing moderator access.
20322032
"""
20332033

@@ -2040,7 +2040,7 @@ class BanStatus:
20402040
20412041
Attributes
20422042
-----------
2043-
user: :class:`PartialUser`
2043+
user: :class:`~twitchio.PartialUser`
20442044
The user who is banned / unbanned.
20452045
reason: Optional[:class:`str`]
20462046
Reason for the ban.
@@ -2056,7 +2056,7 @@ class TimeoutStatus:
20562056
20572057
Attributes
20582058
-----------
2059-
user: :class:`PartialUser`
2059+
user: :class:`~twitchio.PartialUser`
20602060
The user who is timedout / untimedout.
20612061
reason: Optional[:class:`str`]
20622062
Reason for the timeout.
@@ -2077,7 +2077,7 @@ class RaidStatus:
20772077
20782078
Attributes
20792079
-----------
2080-
user: :class:`PartialUser`
2080+
user: :class:`~twitchio.PartialUser`
20812081
The user who is timedout / untimedout.
20822082
viewer_count: :class:`int`
20832083
The viewer count.
@@ -2093,7 +2093,7 @@ class Delete:
20932093
20942094
Attributes
20952095
-----------
2096-
user: :class:`PartialUser`
2096+
user: :class:`~twitchio.PartialUser`
20972097
The user who is timedout / untimedout.
20982098
message_id: :class:`str`
20992099
The id of deleted message.
@@ -2134,7 +2134,7 @@ class UnBanRequest:
21342134
21352135
Attributes
21362136
-----------
2137-
user: :class:`PartialUser`
2137+
user: :class:`~twitchio.PartialUser`
21382138
The user who is requesting an unban.
21392139
is_approved: :class:`bool`
21402140
Whether or not the unban request was approved or denied.
@@ -2178,11 +2178,11 @@ class SuspiciousUserUpdateData(EventData):
21782178
21792179
Attributes
21802180
-----------
2181-
broadcaster: :class:`PartialUser`
2181+
broadcaster: :class:`~twitchio.PartialUser`
21822182
The channel where the treatment for a suspicious user was updated.
2183-
moderator: :class:`PartialUser`
2183+
moderator: :class:`~twitchio.PartialUser`
21842184
The moderator who updated the terms.
2185-
user: :class:`PartialUser`
2185+
user: :class:`~twitchio.PartialUser`
21862186
The the user that sent the message.
21872187
trust_status: :class:`Literal["active_monitoring", "restricted", "none"]`
21882188
The status set for the suspicious user. Can be the following: “none”, “active_monitoring”, or “restricted”.

0 commit comments

Comments
 (0)