Layer 220
AccountGetNotifyExceptions
Returns list of chats with non-default notification settings
method
Users
account.getNotifyExceptions#53577479 flags:# compare_sound:flags.1?true compare_stories:flags.2?true peer:flags.0?InputNotifyPeer = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| CompareSound | flags.1?true | If set, chats with non-default sound will be returned |
| CompareStories | flags.2?true | If set, chats with non-default notification settings for stories will be returned |
| Peer | flags.0?InputNotifyPeer | If specified, only chats of the specified category will be returned |
Returns
UpdatesGogram Example
// AccountGetNotifyExceptions - using Params struct result, err := client.AccountGetNotifyExceptions(&tg.AccountGetNotifyExceptionsParams{ // Optional fields: // CompareSound: true, // CompareStories: true, // Peer: &tg.InputNotifyPeer{}, }) if err != nil { // handle error } // result is *tg.Updates