Class StickerSet
This object represents a sticker set.
Inheritance
System.Object
StickerSet
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TelegramBotApi.Types
Assembly: TelegramBotApi.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn, ItemNullValueHandling = NullValueHandling.Ignore)]
public class StickerSet
Properties
| Improve this Doc View SourceContainMasks
True, if the sticker set contains masks
Declaration
[JsonProperty(PropertyName = "contain_masks", Required = Required.Always)]
public bool ContainMasks { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Sticker set name
Declaration
[JsonProperty(PropertyName = "name", Required = Required.Always)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Stickers
List of all set stickers
Declaration
[JsonProperty(PropertyName = "stickers", Required = Required.Always)]
public Sticker[] Stickers { get; set; }
Property Value
Type | Description |
---|---|
Sticker[] |
Title
Sticker set title
Declaration
[JsonProperty(PropertyName = "title", Required = Required.Always)]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |