Update documentation for dm_event_fields parameter
authorHarmon <Harmon758@gmail.com>
Tue, 15 Nov 2022 04:12:27 +0000 (22:12 -0600)
committerHarmon <Harmon758@gmail.com>
Tue, 15 Nov 2022 04:13:34 +0000 (22:13 -0600)
This documentation was previously inaccurate when the Twitter API v2 Direct Messages endpoints were launched but has now recently been updated.

tweepy/asynchronous/client.py
tweepy/client.py

index e0bdf3c636630334083ad051f41515216d3f5293..19749e9226225278a4f1ef4f82ea67522dbbc6cc 100644 (file)
@@ -2602,8 +2602,9 @@ class AsyncClient(AsyncBaseClient):
             The ``participant_id`` of the user that the authenicating user is
             having a 1-1 conversation with.
         dm_event_fields : list[str] | str | None
-            Extra fields to include in the event payload. ``id``, ``text``, and
-            ``event_type`` are returned by default.
+            Extra fields to include in the event payload. ``id`` and
+            ``event_type`` are returned by default. The ``text`` value isn't
+            included for ``ParticipantsJoin`` and ``ParticipantsLeave`` events.
         event_types : str
             The type of Direct Message event to returm. If not included, all
             types are returned.
index 2afda8ecbb90075e29930cb36c9b1d8643a17c23..47efd332f24d778583fcb7a09eb3cb04f087008c 100644 (file)
@@ -2812,8 +2812,9 @@ class Client(BaseClient):
             The ``participant_id`` of the user that the authenicating user is
             having a 1-1 conversation with.
         dm_event_fields : list[str] | str | None
-            Extra fields to include in the event payload. ``id``, ``text``, and
-            ``event_type`` are returned by default.
+            Extra fields to include in the event payload. ``id`` and
+            ``event_type`` are returned by default. The ``text`` value isn't
+            included for ``ParticipantsJoin`` and ``ParticipantsLeave`` events.
         event_types : str
             The type of Direct Message event to returm. If not included, all
             types are returned.