Skip to content

stickers.createStickerSet

Layer 225

Constructor ID: 0x9021ab67
Returns: StickerSet

Parameters

NameTypeDescription
masksbool (flags.0, optional)
emojisbool (flags.5, optional)
text_colorbool (flags.6, optional)
user_idInputUser
titlestring
short_namestring
thumbInputDocument (flags.2, optional)
stickers[]InputStickerSetItem
softwarestring (flags.3, optional)

Example

go
result, err := client.Raw(&tg.CreateStickerSetRequest{
    masks: false,
    emojis: false,
    text_color: false,
    user_id: nil, // InputUser
    title: "",
    short_name: "",
    thumb: nil, // InputDocument
    stickers: nil,
    software: "",
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.