def channels_messages_reactions_get(self, channel, message, emoji, after=None, limit=100): r = self.http(Routes.CHANNELS_MESSAGES_REACTIONS_GET, dict(channel=channel, message=message, emoji=emoji), params={ 'after': after, 'limit': limit }) return User.create_map(self.client, r.json())
def guilds_bans_list(self, guild): r = self.http(Routes.GUILDS_BANS_LIST, dict(guild=guild)) return User.create_map(self.client, r.json())
def channels_messages_reactions_get(self, channel, message, emoji): r = self.http(Routes.CHANNELS_MESSAGES_REACTIONS_GET, dict(channel=channel, message=message, emoji=emoji)) return User.create_map(self.client, r.json())