Class StickerItem
Represents a partial sticker received in a message.
Assembly: Discord.Net.Rest.dll​
View Source​
Declaration
public class StickerItem : RestEntity<ulong>, IEntity<ulong>, IStickerItem
Properties​
Name​
The name of the sticker.
View Source​
Declaration
public string Name { get; }
Format​
The format of the sticker.
View Source​
Declaration
public StickerFormatType Format { get; }
Methods​
ResolveStickerAsync()​
Resolves this sticker item by fetching the Discord.Rest.Sticker from the API.
View Source​
Declaration
public async Task<Sticker> ResolveStickerAsync()
Returns​
System.Threading.Tasks.Task<Discord.Rest.Sticker>
:
A task representing the download operation, the result of the task is a sticker object.