1 2 3 4 5
class Status(object): def __init__(self, id: str, content: str, published: str): self.id = id self.content = content self.published = published