redditwarp.models.report#

class redditwarp.models.report.ModReport(reason: str, agent_name: str)[source]#

Bases: object

A moderator report.

reason: str#

Report reason provided by the moderator.

agent_name: str#

Name of the reporting moderator.

Unknown what happens if the user is deleted. Is the value [deleted], an empty string, or does the field in the underlying object not exist? If you have any information about this, please open an issue report at https://github.com/Pyprohly/redditwarp/issues.

class redditwarp.models.report.UserReport(reason: str, count: int, snoozed: bool, can_snooze: bool)[source]#

Bases: object

An arbitrary user report.

reason: str#

Report reason.

count: int#

Number of duplicate reports for this reason.

snoozed: bool#

Whether this report reason is snoozed.

can_snooze: bool#