deleteGuildSticker abstract method
- @DELETE.new('/guilds/{guild_id}/stickers/{sticker_id}')
- @Path.new('guild_id') required SnowflakeType guildId,
- @Path.new('sticker_id') required SnowflakeType stickerId,
- @Query.new('purge') String? purge,
Delete guild sticker.
Delete guild sticker. Requires manage_emojis permission. Removes a sticker from the guild; optionally purges all references.
guildId - The ID of the guild.
stickerId - The ID of the sticker.
Implementation
@DELETE('/guilds/{guild_id}/stickers/{sticker_id}')
Future<void> deleteGuildSticker({
@Path('guild_id') required SnowflakeType guildId,
@Path('sticker_id') required SnowflakeType stickerId,
@Query('purge') String? purge,
});