public static string GetString(this IPartialSticker sticker)
 => $"'{sticker.Name}' ({sticker.Id}, {sticker.FormatType})";
Example #2
0
 public static string GetUrl(this IPartialSticker sticker)
 => Discord.Cdn.GetStickerUrl(sticker.Id, sticker.FormatType);
Example #3
0
        public static string GetUrl(this IPartialSticker sticker)
        {
            Guard.IsNotNull(sticker);

            return(Discord.Cdn.GetStickerUrl(sticker.Id, sticker.FormatType));
        }