-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_emoji_status_gen.go
587 lines (518 loc) · 14 KB
/
tl_emoji_status_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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
// 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{}
)
// EmojiStatusEmpty represents TL type `emojiStatusEmpty#2de11aae`.
// No emoji status is set
//
// See https://core.telegram.org/constructor/emojiStatusEmpty for reference.
type EmojiStatusEmpty struct {
}
// EmojiStatusEmptyTypeID is TL type id of EmojiStatusEmpty.
const EmojiStatusEmptyTypeID = 0x2de11aae
// construct implements constructor of EmojiStatusClass.
func (e EmojiStatusEmpty) construct() EmojiStatusClass { return &e }
// Ensuring interfaces in compile-time for EmojiStatusEmpty.
var (
_ bin.Encoder = &EmojiStatusEmpty{}
_ bin.Decoder = &EmojiStatusEmpty{}
_ bin.BareEncoder = &EmojiStatusEmpty{}
_ bin.BareDecoder = &EmojiStatusEmpty{}
_ EmojiStatusClass = &EmojiStatusEmpty{}
)
func (e *EmojiStatusEmpty) Zero() bool {
if e == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (e *EmojiStatusEmpty) String() string {
if e == nil {
return "EmojiStatusEmpty(nil)"
}
type Alias EmojiStatusEmpty
return fmt.Sprintf("EmojiStatusEmpty%+v", Alias(*e))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*EmojiStatusEmpty) TypeID() uint32 {
return EmojiStatusEmptyTypeID
}
// TypeName returns name of type in TL schema.
func (*EmojiStatusEmpty) TypeName() string {
return "emojiStatusEmpty"
}
// TypeInfo returns info about TL type.
func (e *EmojiStatusEmpty) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "emojiStatusEmpty",
ID: EmojiStatusEmptyTypeID,
}
if e == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (e *EmojiStatusEmpty) Encode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode emojiStatusEmpty#2de11aae as nil")
}
b.PutID(EmojiStatusEmptyTypeID)
return e.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (e *EmojiStatusEmpty) EncodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode emojiStatusEmpty#2de11aae as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (e *EmojiStatusEmpty) Decode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode emojiStatusEmpty#2de11aae to nil")
}
if err := b.ConsumeID(EmojiStatusEmptyTypeID); err != nil {
return fmt.Errorf("unable to decode emojiStatusEmpty#2de11aae: %w", err)
}
return e.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (e *EmojiStatusEmpty) DecodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode emojiStatusEmpty#2de11aae to nil")
}
return nil
}
// EmojiStatus represents TL type `emojiStatus#929b619d`.
// An emoji status¹
//
// Links:
// 1. https://core.telegram.org/api/emoji-status
//
// See https://core.telegram.org/constructor/emojiStatus for reference.
type EmojiStatus struct {
// Custom emoji document ID¹
//
// Links:
// 1) https://core.telegram.org/api/custom-emoji
DocumentID int64
}
// EmojiStatusTypeID is TL type id of EmojiStatus.
const EmojiStatusTypeID = 0x929b619d
// construct implements constructor of EmojiStatusClass.
func (e EmojiStatus) construct() EmojiStatusClass { return &e }
// Ensuring interfaces in compile-time for EmojiStatus.
var (
_ bin.Encoder = &EmojiStatus{}
_ bin.Decoder = &EmojiStatus{}
_ bin.BareEncoder = &EmojiStatus{}
_ bin.BareDecoder = &EmojiStatus{}
_ EmojiStatusClass = &EmojiStatus{}
)
func (e *EmojiStatus) Zero() bool {
if e == nil {
return true
}
if !(e.DocumentID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (e *EmojiStatus) String() string {
if e == nil {
return "EmojiStatus(nil)"
}
type Alias EmojiStatus
return fmt.Sprintf("EmojiStatus%+v", Alias(*e))
}
// FillFrom fills EmojiStatus from given interface.
func (e *EmojiStatus) FillFrom(from interface {
GetDocumentID() (value int64)
}) {
e.DocumentID = from.GetDocumentID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*EmojiStatus) TypeID() uint32 {
return EmojiStatusTypeID
}
// TypeName returns name of type in TL schema.
func (*EmojiStatus) TypeName() string {
return "emojiStatus"
}
// TypeInfo returns info about TL type.
func (e *EmojiStatus) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "emojiStatus",
ID: EmojiStatusTypeID,
}
if e == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "DocumentID",
SchemaName: "document_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (e *EmojiStatus) Encode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode emojiStatus#929b619d as nil")
}
b.PutID(EmojiStatusTypeID)
return e.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (e *EmojiStatus) EncodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode emojiStatus#929b619d as nil")
}
b.PutLong(e.DocumentID)
return nil
}
// Decode implements bin.Decoder.
func (e *EmojiStatus) Decode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode emojiStatus#929b619d to nil")
}
if err := b.ConsumeID(EmojiStatusTypeID); err != nil {
return fmt.Errorf("unable to decode emojiStatus#929b619d: %w", err)
}
return e.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (e *EmojiStatus) DecodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode emojiStatus#929b619d to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode emojiStatus#929b619d: field document_id: %w", err)
}
e.DocumentID = value
}
return nil
}
// GetDocumentID returns value of DocumentID field.
func (e *EmojiStatus) GetDocumentID() (value int64) {
if e == nil {
return
}
return e.DocumentID
}
// EmojiStatusUntil represents TL type `emojiStatusUntil#fa30a8c7`.
// An emoji status¹ valid until the specified date
//
// Links:
// 1. https://core.telegram.org/api/emoji-status
//
// See https://core.telegram.org/constructor/emojiStatusUntil for reference.
type EmojiStatusUntil struct {
// Custom emoji document ID¹
//
// Links:
// 1) https://core.telegram.org/api/custom-emoji
DocumentID int64
// This status is valid until this date
Until int
}
// EmojiStatusUntilTypeID is TL type id of EmojiStatusUntil.
const EmojiStatusUntilTypeID = 0xfa30a8c7
// construct implements constructor of EmojiStatusClass.
func (e EmojiStatusUntil) construct() EmojiStatusClass { return &e }
// Ensuring interfaces in compile-time for EmojiStatusUntil.
var (
_ bin.Encoder = &EmojiStatusUntil{}
_ bin.Decoder = &EmojiStatusUntil{}
_ bin.BareEncoder = &EmojiStatusUntil{}
_ bin.BareDecoder = &EmojiStatusUntil{}
_ EmojiStatusClass = &EmojiStatusUntil{}
)
func (e *EmojiStatusUntil) Zero() bool {
if e == nil {
return true
}
if !(e.DocumentID == 0) {
return false
}
if !(e.Until == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (e *EmojiStatusUntil) String() string {
if e == nil {
return "EmojiStatusUntil(nil)"
}
type Alias EmojiStatusUntil
return fmt.Sprintf("EmojiStatusUntil%+v", Alias(*e))
}
// FillFrom fills EmojiStatusUntil from given interface.
func (e *EmojiStatusUntil) FillFrom(from interface {
GetDocumentID() (value int64)
GetUntil() (value int)
}) {
e.DocumentID = from.GetDocumentID()
e.Until = from.GetUntil()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*EmojiStatusUntil) TypeID() uint32 {
return EmojiStatusUntilTypeID
}
// TypeName returns name of type in TL schema.
func (*EmojiStatusUntil) TypeName() string {
return "emojiStatusUntil"
}
// TypeInfo returns info about TL type.
func (e *EmojiStatusUntil) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "emojiStatusUntil",
ID: EmojiStatusUntilTypeID,
}
if e == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "DocumentID",
SchemaName: "document_id",
},
{
Name: "Until",
SchemaName: "until",
},
}
return typ
}
// Encode implements bin.Encoder.
func (e *EmojiStatusUntil) Encode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode emojiStatusUntil#fa30a8c7 as nil")
}
b.PutID(EmojiStatusUntilTypeID)
return e.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (e *EmojiStatusUntil) EncodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't encode emojiStatusUntil#fa30a8c7 as nil")
}
b.PutLong(e.DocumentID)
b.PutInt(e.Until)
return nil
}
// Decode implements bin.Decoder.
func (e *EmojiStatusUntil) Decode(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode emojiStatusUntil#fa30a8c7 to nil")
}
if err := b.ConsumeID(EmojiStatusUntilTypeID); err != nil {
return fmt.Errorf("unable to decode emojiStatusUntil#fa30a8c7: %w", err)
}
return e.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (e *EmojiStatusUntil) DecodeBare(b *bin.Buffer) error {
if e == nil {
return fmt.Errorf("can't decode emojiStatusUntil#fa30a8c7 to nil")
}
{
value, err := b.Long()
if err != nil {
return fmt.Errorf("unable to decode emojiStatusUntil#fa30a8c7: field document_id: %w", err)
}
e.DocumentID = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode emojiStatusUntil#fa30a8c7: field until: %w", err)
}
e.Until = value
}
return nil
}
// GetDocumentID returns value of DocumentID field.
func (e *EmojiStatusUntil) GetDocumentID() (value int64) {
if e == nil {
return
}
return e.DocumentID
}
// GetUntil returns value of Until field.
func (e *EmojiStatusUntil) GetUntil() (value int) {
if e == nil {
return
}
return e.Until
}
// EmojiStatusClassName is schema name of EmojiStatusClass.
const EmojiStatusClassName = "EmojiStatus"
// EmojiStatusClass represents EmojiStatus generic type.
//
// See https://core.telegram.org/type/EmojiStatus for reference.
//
// Example:
//
// g, err := tg.DecodeEmojiStatus(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.EmojiStatusEmpty: // emojiStatusEmpty#2de11aae
// case *tg.EmojiStatus: // emojiStatus#929b619d
// case *tg.EmojiStatusUntil: // emojiStatusUntil#fa30a8c7
// default: panic(v)
// }
type EmojiStatusClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() EmojiStatusClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
// AsNotEmpty tries to map EmojiStatusClass to NotEmptyEmojiStatus.
AsNotEmpty() (NotEmptyEmojiStatus, bool)
}
// NotEmptyEmojiStatus represents NotEmpty subset of EmojiStatusClass.
type NotEmptyEmojiStatus interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() EmojiStatusClass
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
TypeID() uint32
// TypeName returns name of type in TL schema.
TypeName() string
// String implements fmt.Stringer.
String() string
// Zero returns true if current object has a zero value.
Zero() bool
// Custom emoji document ID¹
//
// Links:
// 1) https://core.telegram.org/api/custom-emoji
GetDocumentID() (value int64)
}
// AsNotEmpty tries to map EmojiStatusEmpty to NotEmptyEmojiStatus.
func (e *EmojiStatusEmpty) AsNotEmpty() (NotEmptyEmojiStatus, bool) {
value, ok := (EmojiStatusClass(e)).(NotEmptyEmojiStatus)
return value, ok
}
// AsNotEmpty tries to map EmojiStatus to NotEmptyEmojiStatus.
func (e *EmojiStatus) AsNotEmpty() (NotEmptyEmojiStatus, bool) {
value, ok := (EmojiStatusClass(e)).(NotEmptyEmojiStatus)
return value, ok
}
// AsNotEmpty tries to map EmojiStatusUntil to NotEmptyEmojiStatus.
func (e *EmojiStatusUntil) AsNotEmpty() (NotEmptyEmojiStatus, bool) {
value, ok := (EmojiStatusClass(e)).(NotEmptyEmojiStatus)
return value, ok
}
// DecodeEmojiStatus implements binary de-serialization for EmojiStatusClass.
func DecodeEmojiStatus(buf *bin.Buffer) (EmojiStatusClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case EmojiStatusEmptyTypeID:
// Decoding emojiStatusEmpty#2de11aae.
v := EmojiStatusEmpty{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", err)
}
return &v, nil
case EmojiStatusTypeID:
// Decoding emojiStatus#929b619d.
v := EmojiStatus{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", err)
}
return &v, nil
case EmojiStatusUntilTypeID:
// Decoding emojiStatusUntil#fa30a8c7.
v := EmojiStatusUntil{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", bin.NewUnexpectedID(id))
}
}
// EmojiStatus boxes the EmojiStatusClass providing a helper.
type EmojiStatusBox struct {
EmojiStatus EmojiStatusClass
}
// Decode implements bin.Decoder for EmojiStatusBox.
func (b *EmojiStatusBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode EmojiStatusBox to nil")
}
v, err := DecodeEmojiStatus(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.EmojiStatus = v
return nil
}
// Encode implements bin.Encode for EmojiStatusBox.
func (b *EmojiStatusBox) Encode(buf *bin.Buffer) error {
if b == nil || b.EmojiStatus == nil {
return fmt.Errorf("unable to encode EmojiStatusClass as nil")
}
return b.EmojiStatus.Encode(buf)
}