-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_account_update_notify_settings_gen.go
215 lines (192 loc) · 6.01 KB
/
tl_account_update_notify_settings_gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
// Code generated by gotdgen, DO NOT EDIT.
package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
// No-op definition for keeping imports.
var (
_ = bin.Buffer{}
_ = context.Background()
_ = fmt.Stringer(nil)
_ = strings.Builder{}
_ = errors.Is
_ = multierr.AppendInto
_ = sort.Ints
_ = tdp.Format
_ = tgerr.Error{}
_ = tdjson.Encoder{}
)
// AccountUpdateNotifySettingsRequest represents TL type `account.updateNotifySettings#84be5b93`.
// Edits notification settings from a given user/group, from all users/all groups.
//
// See https://core.telegram.org/method/account.updateNotifySettings for reference.
type AccountUpdateNotifySettingsRequest struct {
// Notification source
Peer InputNotifyPeerClass
// Notification settings
Settings InputPeerNotifySettings
}
// AccountUpdateNotifySettingsRequestTypeID is TL type id of AccountUpdateNotifySettingsRequest.
const AccountUpdateNotifySettingsRequestTypeID = 0x84be5b93
// Ensuring interfaces in compile-time for AccountUpdateNotifySettingsRequest.
var (
_ bin.Encoder = &AccountUpdateNotifySettingsRequest{}
_ bin.Decoder = &AccountUpdateNotifySettingsRequest{}
_ bin.BareEncoder = &AccountUpdateNotifySettingsRequest{}
_ bin.BareDecoder = &AccountUpdateNotifySettingsRequest{}
)
func (u *AccountUpdateNotifySettingsRequest) Zero() bool {
if u == nil {
return true
}
if !(u.Peer == nil) {
return false
}
if !(u.Settings.Zero()) {
return false
}
return true
}
// String implements fmt.Stringer.
func (u *AccountUpdateNotifySettingsRequest) String() string {
if u == nil {
return "AccountUpdateNotifySettingsRequest(nil)"
}
type Alias AccountUpdateNotifySettingsRequest
return fmt.Sprintf("AccountUpdateNotifySettingsRequest%+v", Alias(*u))
}
// FillFrom fills AccountUpdateNotifySettingsRequest from given interface.
func (u *AccountUpdateNotifySettingsRequest) FillFrom(from interface {
GetPeer() (value InputNotifyPeerClass)
GetSettings() (value InputPeerNotifySettings)
}) {
u.Peer = from.GetPeer()
u.Settings = from.GetSettings()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*AccountUpdateNotifySettingsRequest) TypeID() uint32 {
return AccountUpdateNotifySettingsRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*AccountUpdateNotifySettingsRequest) TypeName() string {
return "account.updateNotifySettings"
}
// TypeInfo returns info about TL type.
func (u *AccountUpdateNotifySettingsRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "account.updateNotifySettings",
ID: AccountUpdateNotifySettingsRequestTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Peer",
SchemaName: "peer",
},
{
Name: "Settings",
SchemaName: "settings",
},
}
return typ
}
// Encode implements bin.Encoder.
func (u *AccountUpdateNotifySettingsRequest) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode account.updateNotifySettings#84be5b93 as nil")
}
b.PutID(AccountUpdateNotifySettingsRequestTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *AccountUpdateNotifySettingsRequest) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode account.updateNotifySettings#84be5b93 as nil")
}
if u.Peer == nil {
return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field peer is nil")
}
if err := u.Peer.Encode(b); err != nil {
return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field peer: %w", err)
}
if err := u.Settings.Encode(b); err != nil {
return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field settings: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (u *AccountUpdateNotifySettingsRequest) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode account.updateNotifySettings#84be5b93 to nil")
}
if err := b.ConsumeID(AccountUpdateNotifySettingsRequestTypeID); err != nil {
return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *AccountUpdateNotifySettingsRequest) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode account.updateNotifySettings#84be5b93 to nil")
}
{
value, err := DecodeInputNotifyPeer(b)
if err != nil {
return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: field peer: %w", err)
}
u.Peer = value
}
{
if err := u.Settings.Decode(b); err != nil {
return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: field settings: %w", err)
}
}
return nil
}
// GetPeer returns value of Peer field.
func (u *AccountUpdateNotifySettingsRequest) GetPeer() (value InputNotifyPeerClass) {
if u == nil {
return
}
return u.Peer
}
// GetSettings returns value of Settings field.
func (u *AccountUpdateNotifySettingsRequest) GetSettings() (value InputPeerNotifySettings) {
if u == nil {
return
}
return u.Settings
}
// AccountUpdateNotifySettings invokes method account.updateNotifySettings#84be5b93 returning error if any.
// Edits notification settings from a given user/group, from all users/all groups.
//
// Possible errors:
// 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.
//
// See https://core.telegram.org/method/account.updateNotifySettings for reference.
func (c *Client) AccountUpdateNotifySettings(ctx context.Context, request *AccountUpdateNotifySettingsRequest) (bool, error) {
var result BoolBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return false, err
}
_, ok := result.Bool.(*BoolTrue)
return ok, nil
}