-
Notifications
You must be signed in to change notification settings - Fork 0
Sticker
Dmitry edited this page Apr 13, 2024
·
1 revision
property | type |
---|---|
sticker_id |
string |
cache_ttl |
?int |
$sticker = $api->sticker->getSticker(sticker_id: 'sticker_id');
property | type |
---|---|
cache_ttl |
?int |
$sticker = $api->sticker->listStickerPacks();
property | type |
---|---|
guild_id |
string |
cache_ttl |
?int |
$sticker = $api->sticker->listGuildStickers(guild_id: 'guild_id');
property | type |
---|---|
guild_id |
string |
sticker_id |
string |
cache_ttl |
?int |
$sticker = $api->sticker->getGuildSticker(guild_id: 'guild_id', sticker_id: 'sticker_id');
property | type |
---|---|
guild_id |
string |
params |
array |
reason |
string |
cache_ttl |
?int |
$sticker = $api->sticker->createGuildSticker(guild_id: 'guild_id', params: [], reason: 'reason');
property | type |
---|---|
guild_id |
string |
sticker_id |
string |
params |
array |
reason |
string |
cache_ttl |
?int |
$sticker = $api->sticker->modifyGuildSticker(guild_id: 'guild_id', sticker_id: 'sticker_id', params: [], reason: 'reason');
property | type |
---|---|
guild_id |
string |
sticker_id |
string |
reason |
string |
cache_ttl |
?int |
$sticker = $api->sticker->deleteGuildSticker(guild_id: 'guild_id', sticker_id: 'sticker_id', reason: 'reason');