Layer 220
MessagesDeleteQuickReplyMessages
Delete one or more messages from a quick reply shortcut. This will also emit an update Delete Quick Reply Messages update.
method
Users
messages.deleteQuickReplyMessages#e105e910 shortcut_id:int id:Vector<int> = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| ShortcutId | int | Shortcut ID. |
| Id | Vector<int> | IDs of shortcut messages to delete. |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | SHORTCUT_INVALID | The specified shortcut is invalid. |
Gogram Example
// MessagesDeleteQuickReplyMessages - positional arguments result, err := client.MessagesDeleteQuickReplyMessages(0, []int{}) if err != nil { // handle error } // result is *tg.Updates