Show / Hide Table of Contents

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 Source

ContainMasks

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
| Improve this Doc View Source

Name

Sticker set name

Declaration
[JsonProperty(PropertyName = "name", Required = Required.Always)]
public string Name { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Stickers

List of all set stickers

Declaration
[JsonProperty(PropertyName = "stickers", Required = Required.Always)]
public Sticker[] Stickers { get; set; }
Property Value
Type Description
Sticker[]
| Improve this Doc View Source

Title

Sticker set title

Declaration
[JsonProperty(PropertyName = "title", Required = Required.Always)]
public string Title { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX