RemovalReason

class praw.models.reddit.removal_reasons.RemovalReason(reddit: Reddit, subreddit: Subreddit, reason_id: str, _data: Optional[Dict[str, Any]] = None)

An individual Removal Reason object.

Typical Attributes

This table describes attributes that typically belong to objects of this class. Since attributes are dynamically provided (see Determine Available Attributes of an Object), there is not a guarantee that these attributes will always be present, nor is this list necessarily comprehensive.

Attribute Description
id The id of the removal reason.
message The message of the removal reason.
title The title of the removal reason.
__init__(reddit: Reddit, subreddit: Subreddit, reason_id: str, _data: Optional[Dict[str, Any]] = None)

Construct an instance of the Removal Reason object.

delete()

Delete a removal reason from this subreddit.

To delete '141vv5c16py7d' from the subreddit 'NAME' try:

reddit.subreddit('NAME').removal_reasons['141vv5c16py7d'].mod.delete()
classmethod parse(data: Dict[str, Any], reddit: Reddit) → Any

Return an instance of cls from data.

Parameters:
  • data – The structured data.
  • reddit – An instance of Reddit.
update(message: str, title: str)

Update the removal reason from this subreddit.

Parameters:
  • message – The removal reason’s new message (required).
  • title – The removal reason’s new title (required).

To update '141vv5c16py7d' from the subreddit 'NAME' try:

reddit.subreddit('NAME').removal_reasons['141vv5c16py7d'].mod.update(
    message='New message',
    title='New title')