Interface ISticker
Represents a discord sticker.
Assembly: Discord.Net.Core.dll​
View Source​
Declaration
public interface ISticker : IStickerItem
Properties​
Id​
Gets the ID of this sticker.
View Source​
Declaration
ulong Id { get; }
PackId​
Gets the ID of the pack of this sticker.
View Source​
Declaration
ulong PackId { get; }
Name​
Gets the name of this sticker.
View Source​
Declaration
string Name { get; }
Description​
Gets the description of this sticker.
View Source​
Declaration
string Description { get; }
Tags​
Gets the list of tags of this sticker.
View Source​
Declaration
IReadOnlyCollection<string> Tags { get; }
Type​
Gets the type of this sticker.
View Source​
Declaration
StickerType Type { get; }
Format​
Gets the format type of this sticker.
View Source​
Declaration
StickerFormatType Format { get; }
IsAvailable​
Gets whether this guild sticker can be used, may be false due to loss of Server Boosts.
View Source​
Declaration
bool? IsAvailable { get; }
SortOrder​
Gets the standard sticker's sort order within its pack.
View Source​
Declaration
int? SortOrder { get; }
Methods​
GetStickerUrl()​
Gets the image url for this sticker.
View Source​
Declaration
string GetStickerUrl()
Returns​
System.String