Layer 220
AccountUpdateNotifySettings
Edits notification settings from a given user/group, from all users/all groups.
method
Users
account.updateNotifySettings#84be5b93 peer:InputNotifyPeer settings:InputPeerNotifySettings = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Peer | InputNotifyPeer | Notification source |
| Settings | InputPeerNotifySettings | Notification settings |
Returns
BoolPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | CHANNEL_INVALID | The provided channel is invalid. |
| 400 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup. |
| 400 | MSG_ID_INVALID | Invalid message ID provided. |
| 400 | PEER_ID_INVALID | The provided peer id is invalid. |
| 400 | SETTINGS_INVALID | Invalid settings were provided. |
Gogram Example
// AccountUpdateNotifySettings - positional arguments result, err := client.AccountUpdateNotifySettings(&tg.InputNotifyPeer{}, &tg.InputPeerNotifySettings{}) if err != nil { // handle error } // result is *tg.Bool