MadelineProtoDocs/old_docs/API_docs_v91/constructors/inputStickerSetID.md
2019-03-08 13:49:23 +01:00

868 B

title description image
inputStickerSetID Sticker set ID https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputStickerSetID

Back to constructors index

Sticker set ID

Attributes:

Name Type Required Description
id long Yes ID
access_hash long Yes Access hash

Type: InputStickerSet

Example:

$inputStickerSetID = ['_' => 'inputStickerSetID', 'id' => long, 'access_hash' => long];

PWRTelegram json-encoded version:

{"_": "inputStickerSetID", "id": long, "access_hash": long}

Or, if you're into Lua:

inputStickerSetID={_='inputStickerSetID', id=long, access_hash=long}