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