from abc import ABC class DiscordModelsBase(ABC): def to_json(self): """A utility method which returns raw payload object as it was received from discord. Returns ------- dict A dict representing raw payload object received from discord. """ return self._payload