MadelineProtoDocs/docs/API_docs/constructors/inputStickerSetID.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00: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}