-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_messages_get_recent_stickers_gen.go
234 lines (209 loc) · 5.93 KB
/
tl_messages_get_recent_stickers_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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// 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{}
)
// MessagesGetRecentStickersRequest represents TL type `messages.getRecentStickers#9da9403b`.
// Get recent stickers
//
// See https://core.telegram.org/method/messages.getRecentStickers for reference.
type MessagesGetRecentStickersRequest struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Get stickers recently attached to photo or video files
Attached bool
// Hash for pagination, for more info click here¹
//
// Links:
// 1) https://core.telegram.org/api/offsets#hash-generation
Hash int64
}
// MessagesGetRecentStickersRequestTypeID is TL type id of MessagesGetRecentStickersRequest.
const MessagesGetRecentStickersRequestTypeID = 0x9da9403b
// Ensuring interfaces in compile-time for MessagesGetRecentStickersRequest.
var (
_ bin.Encoder = &MessagesGetRecentStickersRequest{}
_ bin.Decoder = &MessagesGetRecentStickersRequest{}
_ bin.BareEncoder = &MessagesGetRecentStickersRequest{}
_ bin.BareDecoder = &MessagesGetRecentStickersRequest{}
)
func (g *MessagesGetRecentStickersRequest) Zero() bool {
if g == nil {
return true
}
if !(g.Flags.Zero()) {
return false
}
if !(g.Attached == false) {
return false
}
if !(g.Hash == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (g *MessagesGetRecentStickersRequest) String() string {
if g == nil {
return "MessagesGetRecentStickersRequest(nil)"
}
type Alias MessagesGetRecentStickersRequest
return fmt.Sprintf("MessagesGetRecentStickersRequest%+v", Alias(*g))
}
// FillFrom fills MessagesGetRecentStickersRequest from given interface.
func (g *MessagesGetRecentStickersRequest) FillFrom(from interface {
GetAttached() (value bool)
GetHash() (value int64)
}) {
g.Attached = from.GetAttached()
g.Hash = from.GetHash()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*MessagesGetRecentStickersRequest) TypeID() uint32 {
return MessagesGetRecentStickersRequestTypeID
}
// TypeName returns name of type in TL schema.
func (*MessagesGetRecentStickersRequest) TypeName() string {
return "messages.getRecentStickers"
}
// TypeInfo returns info about TL type.
func (g *MessagesGetRecentStickersRequest) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "messages.getRecentStickers",
ID: MessagesGetRecentStickersRequestTypeID,
}
if g == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Attached",
SchemaName: "attached",
Null: !g.Flags.Has(0),
},
{
Name: "Hash",
SchemaName: "hash",
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (g *MessagesGetRecentStickersRequest) SetFlags() {
if !(g.Attached == false) {
g.Flags.Set(0)
}
}
// Encode implements bin.Encoder.
func (g *MessagesGetRecentStickersRequest) Encode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode messages.getRecentStickers#9da9403b as nil")
}
b.PutID(MessagesGetRecentStickersRequestTypeID)
return g.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (g *MessagesGetRecentStickersRequest) EncodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't encode messages.getRecentStickers#9da9403b as nil")
}
g.SetFlags()
if err := g.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode messages.getRecentStickers#9da9403b: field flags: %w", err)
}
b.PutLong(g.Hash)
return nil
}
// Decode implements bin.Decoder.
func (g *MessagesGetRecentStickersRequest) Decode(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode messages.getRecentStickers#9da9403b to nil")
}
if err := b.ConsumeID(MessagesGetRecentStickersRequestTypeID); err != nil {
return fmt.Errorf("unable to decode messages.getRecentStickers#9da9403b: %w", err)
}
return g.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (g *MessagesGetRecentStickersRequest) DecodeBare(b *bin.Buffer) error {
if g == nil {
return fmt.Errorf("can't decode messages.getRecentStickers#9da9403b to nil")
}
{
if err := g.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode messages.getRecentStickers#9da9403b: field flags: %w", err)
}
}
g.Attached = g.Flags.Has(0)
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode messages.getRecentStickers#9da9403b: field hash: %w", err)
}
g.Hash = value
}
return nil
}
// SetAttached sets value of Attached conditional field.
func (g *MessagesGetRecentStickersRequest) SetAttached(value bool) {
if value {
g.Flags.Set(0)
g.Attached = true
} else {
g.Flags.Unset(0)
g.Attached = false
}
}
// GetAttached returns value of Attached conditional field.
func (g *MessagesGetRecentStickersRequest) GetAttached() (value bool) {
if g == nil {
return
}
return g.Flags.Has(0)
}
// GetHash returns value of Hash field.
func (g *MessagesGetRecentStickersRequest) GetHash() (value int64) {
if g == nil {
return
}
return g.Hash
}
// MessagesGetRecentStickers invokes method messages.getRecentStickers#9da9403b returning error if any.
// Get recent stickers
//
// See https://core.telegram.org/method/messages.getRecentStickers for reference.
func (c *Client) MessagesGetRecentStickers(ctx context.Context, request *MessagesGetRecentStickersRequest) (MessagesRecentStickersClass, error) {
var result MessagesRecentStickersBox
if err := c.rpc.Invoke(ctx, request, &result); err != nil {
return nil, err
}
return result.RecentStickers, nil
}