26 lines
656 B
Python
26 lines
656 B
Python
#!/usr/bin/env python3
|
|
|
|
class Report(object):
|
|
"""
|
|
A ticketfrei report object.
|
|
|
|
Toots, Tweets, and E-Mails can be formed into ticketfrei reports.
|
|
|
|
"""
|
|
|
|
def __init__(self, author, source, text, id, timestamp):
|
|
"""
|
|
Constructor of a ticketfrei report
|
|
|
|
:param author: username of the author
|
|
:param source: mastodon, twitter, or email
|
|
:param text: the text of the report
|
|
:param id: id in the network
|
|
:param timestamp: time of the report
|
|
"""
|
|
self.author = author
|
|
self.type = source
|
|
self.text = text
|
|
self.timestamp = timestamp
|
|
self.id = id
|