A class for messages to a subreddit. .. include:: ../../typical_attributes.rst =============== ================================================================= Attribute Description =============== ================================================================= ``autho
| 112 | |
| 113 | |
| 114 | class SubredditMessage(Message): |
| 115 | """A class for messages to a subreddit. |
| 116 | |
| 117 | .. include:: ../../typical_attributes.rst |
| 118 | |
| 119 | =============== ================================================================= |
| 120 | Attribute Description |
| 121 | =============== ================================================================= |
| 122 | ``author`` Provides an instance of :class:`.Redditor`. |
| 123 | ``body`` The body of the message, as Markdown. |
| 124 | ``body_html`` The body of the message, as HTML. |
| 125 | ``created_utc`` Time the message was created, represented in `Unix Time`_. |
| 126 | ``dest`` Provides an instance of :class:`.Redditor`. The recipient of the |
| 127 | message. |
| 128 | ``id`` The ID of the message. |
| 129 | ``name`` The full ID of the message, prefixed with ``t4_``. |
| 130 | ``subject`` The subject of the message. |
| 131 | ``subreddit`` If the message was sent from a subreddit, provides an instance of |
| 132 | :class:`.Subreddit`. |
| 133 | ``was_comment`` Whether or not the message was a comment reply. |
| 134 | =============== ================================================================= |
| 135 | |
| 136 | .. _unix time: https://en.wikipedia.org/wiki/Unix_time |
| 137 | |
| 138 | """ |
no outgoing calls
searching dependent graphs…