-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_recent_me_url_gen.go
1465 lines (1270 loc) · 34.1 KB
/
tl_recent_me_url_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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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/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{}
)
// RecentMeURLUnknown represents TL type `recentMeUrlUnknown#46e1d13d`.
// Unknown t.me url
//
// See https://core.telegram.org/constructor/recentMeUrlUnknown for reference.
type RecentMeURLUnknown struct {
// URL
URL string
}
// RecentMeURLUnknownTypeID is TL type id of RecentMeURLUnknown.
const RecentMeURLUnknownTypeID = 0x46e1d13d
func (r *RecentMeURLUnknown) Zero() bool {
if r == nil {
return true
}
if !(r.URL == "") {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *RecentMeURLUnknown) String() string {
if r == nil {
return "RecentMeURLUnknown(nil)"
}
type Alias RecentMeURLUnknown
return fmt.Sprintf("RecentMeURLUnknown%+v", Alias(*r))
}
// FillFrom fills RecentMeURLUnknown from given interface.
func (r *RecentMeURLUnknown) FillFrom(from interface {
GetURL() (value string)
}) {
r.URL = from.GetURL()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*RecentMeURLUnknown) TypeID() uint32 {
return RecentMeURLUnknownTypeID
}
// TypeName returns name of type in TL schema.
func (*RecentMeURLUnknown) TypeName() string {
return "recentMeUrlUnknown"
}
// TypeInfo returns info about TL type.
func (r *RecentMeURLUnknown) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "recentMeUrlUnknown",
ID: RecentMeURLUnknownTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
}
return typ
}
// Encode implements bin.Encoder.
func (r *RecentMeURLUnknown) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlUnknown#46e1d13d as nil")
}
b.PutID(RecentMeURLUnknownTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *RecentMeURLUnknown) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlUnknown#46e1d13d as nil")
}
b.PutString(r.URL)
return nil
}
// GetURL returns value of URL field.
func (r *RecentMeURLUnknown) GetURL() (value string) {
return r.URL
}
// Decode implements bin.Decoder.
func (r *RecentMeURLUnknown) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlUnknown#46e1d13d to nil")
}
if err := b.ConsumeID(RecentMeURLUnknownTypeID); err != nil {
return fmt.Errorf("unable to decode recentMeUrlUnknown#46e1d13d: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *RecentMeURLUnknown) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlUnknown#46e1d13d to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlUnknown#46e1d13d: field url: %w", err)
}
r.URL = value
}
return nil
}
// construct implements constructor of RecentMeURLClass.
func (r RecentMeURLUnknown) construct() RecentMeURLClass { return &r }
// Ensuring interfaces in compile-time for RecentMeURLUnknown.
var (
_ bin.Encoder = &RecentMeURLUnknown{}
_ bin.Decoder = &RecentMeURLUnknown{}
_ bin.BareEncoder = &RecentMeURLUnknown{}
_ bin.BareDecoder = &RecentMeURLUnknown{}
_ RecentMeURLClass = &RecentMeURLUnknown{}
)
// RecentMeURLUser represents TL type `recentMeUrlUser#8dbc3336`.
// Recent t.me link to a user
//
// See https://core.telegram.org/constructor/recentMeUrlUser for reference.
type RecentMeURLUser struct {
// URL
URL string
// User ID
UserID int
}
// RecentMeURLUserTypeID is TL type id of RecentMeURLUser.
const RecentMeURLUserTypeID = 0x8dbc3336
func (r *RecentMeURLUser) Zero() bool {
if r == nil {
return true
}
if !(r.URL == "") {
return false
}
if !(r.UserID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *RecentMeURLUser) String() string {
if r == nil {
return "RecentMeURLUser(nil)"
}
type Alias RecentMeURLUser
return fmt.Sprintf("RecentMeURLUser%+v", Alias(*r))
}
// FillFrom fills RecentMeURLUser from given interface.
func (r *RecentMeURLUser) FillFrom(from interface {
GetURL() (value string)
GetUserID() (value int)
}) {
r.URL = from.GetURL()
r.UserID = from.GetUserID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*RecentMeURLUser) TypeID() uint32 {
return RecentMeURLUserTypeID
}
// TypeName returns name of type in TL schema.
func (*RecentMeURLUser) TypeName() string {
return "recentMeUrlUser"
}
// TypeInfo returns info about TL type.
func (r *RecentMeURLUser) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "recentMeUrlUser",
ID: RecentMeURLUserTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "UserID",
SchemaName: "user_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (r *RecentMeURLUser) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlUser#8dbc3336 as nil")
}
b.PutID(RecentMeURLUserTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *RecentMeURLUser) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlUser#8dbc3336 as nil")
}
b.PutString(r.URL)
b.PutInt(r.UserID)
return nil
}
// GetURL returns value of URL field.
func (r *RecentMeURLUser) GetURL() (value string) {
return r.URL
}
// GetUserID returns value of UserID field.
func (r *RecentMeURLUser) GetUserID() (value int) {
return r.UserID
}
// Decode implements bin.Decoder.
func (r *RecentMeURLUser) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlUser#8dbc3336 to nil")
}
if err := b.ConsumeID(RecentMeURLUserTypeID); err != nil {
return fmt.Errorf("unable to decode recentMeUrlUser#8dbc3336: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *RecentMeURLUser) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlUser#8dbc3336 to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlUser#8dbc3336: field url: %w", err)
}
r.URL = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlUser#8dbc3336: field user_id: %w", err)
}
r.UserID = value
}
return nil
}
// construct implements constructor of RecentMeURLClass.
func (r RecentMeURLUser) construct() RecentMeURLClass { return &r }
// Ensuring interfaces in compile-time for RecentMeURLUser.
var (
_ bin.Encoder = &RecentMeURLUser{}
_ bin.Decoder = &RecentMeURLUser{}
_ bin.BareEncoder = &RecentMeURLUser{}
_ bin.BareDecoder = &RecentMeURLUser{}
_ RecentMeURLClass = &RecentMeURLUser{}
)
// RecentMeURLChat represents TL type `recentMeUrlChat#a01b22f9`.
// Recent t.me link to a chat
//
// See https://core.telegram.org/constructor/recentMeUrlChat for reference.
type RecentMeURLChat struct {
// t.me URL
URL string
// Chat ID
ChatID int
}
// RecentMeURLChatTypeID is TL type id of RecentMeURLChat.
const RecentMeURLChatTypeID = 0xa01b22f9
func (r *RecentMeURLChat) Zero() bool {
if r == nil {
return true
}
if !(r.URL == "") {
return false
}
if !(r.ChatID == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *RecentMeURLChat) String() string {
if r == nil {
return "RecentMeURLChat(nil)"
}
type Alias RecentMeURLChat
return fmt.Sprintf("RecentMeURLChat%+v", Alias(*r))
}
// FillFrom fills RecentMeURLChat from given interface.
func (r *RecentMeURLChat) FillFrom(from interface {
GetURL() (value string)
GetChatID() (value int)
}) {
r.URL = from.GetURL()
r.ChatID = from.GetChatID()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*RecentMeURLChat) TypeID() uint32 {
return RecentMeURLChatTypeID
}
// TypeName returns name of type in TL schema.
func (*RecentMeURLChat) TypeName() string {
return "recentMeUrlChat"
}
// TypeInfo returns info about TL type.
func (r *RecentMeURLChat) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "recentMeUrlChat",
ID: RecentMeURLChatTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "ChatID",
SchemaName: "chat_id",
},
}
return typ
}
// Encode implements bin.Encoder.
func (r *RecentMeURLChat) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlChat#a01b22f9 as nil")
}
b.PutID(RecentMeURLChatTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *RecentMeURLChat) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlChat#a01b22f9 as nil")
}
b.PutString(r.URL)
b.PutInt(r.ChatID)
return nil
}
// GetURL returns value of URL field.
func (r *RecentMeURLChat) GetURL() (value string) {
return r.URL
}
// GetChatID returns value of ChatID field.
func (r *RecentMeURLChat) GetChatID() (value int) {
return r.ChatID
}
// Decode implements bin.Decoder.
func (r *RecentMeURLChat) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlChat#a01b22f9 to nil")
}
if err := b.ConsumeID(RecentMeURLChatTypeID); err != nil {
return fmt.Errorf("unable to decode recentMeUrlChat#a01b22f9: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *RecentMeURLChat) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlChat#a01b22f9 to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlChat#a01b22f9: field url: %w", err)
}
r.URL = value
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlChat#a01b22f9: field chat_id: %w", err)
}
r.ChatID = value
}
return nil
}
// construct implements constructor of RecentMeURLClass.
func (r RecentMeURLChat) construct() RecentMeURLClass { return &r }
// Ensuring interfaces in compile-time for RecentMeURLChat.
var (
_ bin.Encoder = &RecentMeURLChat{}
_ bin.Decoder = &RecentMeURLChat{}
_ bin.BareEncoder = &RecentMeURLChat{}
_ bin.BareDecoder = &RecentMeURLChat{}
_ RecentMeURLClass = &RecentMeURLChat{}
)
// RecentMeURLChatInvite represents TL type `recentMeUrlChatInvite#eb49081d`.
// Recent t.me invite link to a chat
//
// See https://core.telegram.org/constructor/recentMeUrlChatInvite for reference.
type RecentMeURLChatInvite struct {
// t.me URL
URL string
// Chat invitation
ChatInvite ChatInviteClass
}
// RecentMeURLChatInviteTypeID is TL type id of RecentMeURLChatInvite.
const RecentMeURLChatInviteTypeID = 0xeb49081d
func (r *RecentMeURLChatInvite) Zero() bool {
if r == nil {
return true
}
if !(r.URL == "") {
return false
}
if !(r.ChatInvite == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *RecentMeURLChatInvite) String() string {
if r == nil {
return "RecentMeURLChatInvite(nil)"
}
type Alias RecentMeURLChatInvite
return fmt.Sprintf("RecentMeURLChatInvite%+v", Alias(*r))
}
// FillFrom fills RecentMeURLChatInvite from given interface.
func (r *RecentMeURLChatInvite) FillFrom(from interface {
GetURL() (value string)
GetChatInvite() (value ChatInviteClass)
}) {
r.URL = from.GetURL()
r.ChatInvite = from.GetChatInvite()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*RecentMeURLChatInvite) TypeID() uint32 {
return RecentMeURLChatInviteTypeID
}
// TypeName returns name of type in TL schema.
func (*RecentMeURLChatInvite) TypeName() string {
return "recentMeUrlChatInvite"
}
// TypeInfo returns info about TL type.
func (r *RecentMeURLChatInvite) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "recentMeUrlChatInvite",
ID: RecentMeURLChatInviteTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "ChatInvite",
SchemaName: "chat_invite",
},
}
return typ
}
// Encode implements bin.Encoder.
func (r *RecentMeURLChatInvite) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlChatInvite#eb49081d as nil")
}
b.PutID(RecentMeURLChatInviteTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *RecentMeURLChatInvite) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlChatInvite#eb49081d as nil")
}
b.PutString(r.URL)
if r.ChatInvite == nil {
return fmt.Errorf("unable to encode recentMeUrlChatInvite#eb49081d: field chat_invite is nil")
}
if err := r.ChatInvite.Encode(b); err != nil {
return fmt.Errorf("unable to encode recentMeUrlChatInvite#eb49081d: field chat_invite: %w", err)
}
return nil
}
// GetURL returns value of URL field.
func (r *RecentMeURLChatInvite) GetURL() (value string) {
return r.URL
}
// GetChatInvite returns value of ChatInvite field.
func (r *RecentMeURLChatInvite) GetChatInvite() (value ChatInviteClass) {
return r.ChatInvite
}
// Decode implements bin.Decoder.
func (r *RecentMeURLChatInvite) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlChatInvite#eb49081d to nil")
}
if err := b.ConsumeID(RecentMeURLChatInviteTypeID); err != nil {
return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *RecentMeURLChatInvite) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlChatInvite#eb49081d to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: field url: %w", err)
}
r.URL = value
}
{
value, err := DecodeChatInvite(b)
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: field chat_invite: %w", err)
}
r.ChatInvite = value
}
return nil
}
// construct implements constructor of RecentMeURLClass.
func (r RecentMeURLChatInvite) construct() RecentMeURLClass { return &r }
// Ensuring interfaces in compile-time for RecentMeURLChatInvite.
var (
_ bin.Encoder = &RecentMeURLChatInvite{}
_ bin.Decoder = &RecentMeURLChatInvite{}
_ bin.BareEncoder = &RecentMeURLChatInvite{}
_ bin.BareDecoder = &RecentMeURLChatInvite{}
_ RecentMeURLClass = &RecentMeURLChatInvite{}
)
// RecentMeURLStickerSet represents TL type `recentMeUrlStickerSet#bc0a57dc`.
// Recent t.me stickerset installation URL
//
// See https://core.telegram.org/constructor/recentMeUrlStickerSet for reference.
type RecentMeURLStickerSet struct {
// t.me URL
URL string
// Stickerset
Set StickerSetCoveredClass
}
// RecentMeURLStickerSetTypeID is TL type id of RecentMeURLStickerSet.
const RecentMeURLStickerSetTypeID = 0xbc0a57dc
func (r *RecentMeURLStickerSet) Zero() bool {
if r == nil {
return true
}
if !(r.URL == "") {
return false
}
if !(r.Set == nil) {
return false
}
return true
}
// String implements fmt.Stringer.
func (r *RecentMeURLStickerSet) String() string {
if r == nil {
return "RecentMeURLStickerSet(nil)"
}
type Alias RecentMeURLStickerSet
return fmt.Sprintf("RecentMeURLStickerSet%+v", Alias(*r))
}
// FillFrom fills RecentMeURLStickerSet from given interface.
func (r *RecentMeURLStickerSet) FillFrom(from interface {
GetURL() (value string)
GetSet() (value StickerSetCoveredClass)
}) {
r.URL = from.GetURL()
r.Set = from.GetSet()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*RecentMeURLStickerSet) TypeID() uint32 {
return RecentMeURLStickerSetTypeID
}
// TypeName returns name of type in TL schema.
func (*RecentMeURLStickerSet) TypeName() string {
return "recentMeUrlStickerSet"
}
// TypeInfo returns info about TL type.
func (r *RecentMeURLStickerSet) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "recentMeUrlStickerSet",
ID: RecentMeURLStickerSetTypeID,
}
if r == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "URL",
SchemaName: "url",
},
{
Name: "Set",
SchemaName: "set",
},
}
return typ
}
// Encode implements bin.Encoder.
func (r *RecentMeURLStickerSet) Encode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlStickerSet#bc0a57dc as nil")
}
b.PutID(RecentMeURLStickerSetTypeID)
return r.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (r *RecentMeURLStickerSet) EncodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't encode recentMeUrlStickerSet#bc0a57dc as nil")
}
b.PutString(r.URL)
if r.Set == nil {
return fmt.Errorf("unable to encode recentMeUrlStickerSet#bc0a57dc: field set is nil")
}
if err := r.Set.Encode(b); err != nil {
return fmt.Errorf("unable to encode recentMeUrlStickerSet#bc0a57dc: field set: %w", err)
}
return nil
}
// GetURL returns value of URL field.
func (r *RecentMeURLStickerSet) GetURL() (value string) {
return r.URL
}
// GetSet returns value of Set field.
func (r *RecentMeURLStickerSet) GetSet() (value StickerSetCoveredClass) {
return r.Set
}
// Decode implements bin.Decoder.
func (r *RecentMeURLStickerSet) Decode(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlStickerSet#bc0a57dc to nil")
}
if err := b.ConsumeID(RecentMeURLStickerSetTypeID); err != nil {
return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: %w", err)
}
return r.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (r *RecentMeURLStickerSet) DecodeBare(b *bin.Buffer) error {
if r == nil {
return fmt.Errorf("can't decode recentMeUrlStickerSet#bc0a57dc to nil")
}
{
value, err := b.String()
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: field url: %w", err)
}
r.URL = value
}
{
value, err := DecodeStickerSetCovered(b)
if err != nil {
return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: field set: %w", err)
}
r.Set = value
}
return nil
}
// construct implements constructor of RecentMeURLClass.
func (r RecentMeURLStickerSet) construct() RecentMeURLClass { return &r }
// Ensuring interfaces in compile-time for RecentMeURLStickerSet.
var (
_ bin.Encoder = &RecentMeURLStickerSet{}
_ bin.Decoder = &RecentMeURLStickerSet{}
_ bin.BareEncoder = &RecentMeURLStickerSet{}
_ bin.BareDecoder = &RecentMeURLStickerSet{}
_ RecentMeURLClass = &RecentMeURLStickerSet{}
)
// RecentMeURLClass represents RecentMeUrl generic type.
//
// See https://core.telegram.org/type/RecentMeUrl for reference.
//
// Example:
// g, err := tg.DecodeRecentMeURL(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.RecentMeURLUnknown: // recentMeUrlUnknown#46e1d13d
// case *tg.RecentMeURLUser: // recentMeUrlUser#8dbc3336
// case *tg.RecentMeURLChat: // recentMeUrlChat#a01b22f9
// case *tg.RecentMeURLChatInvite: // recentMeUrlChatInvite#eb49081d
// case *tg.RecentMeURLStickerSet: // recentMeUrlStickerSet#bc0a57dc
// default: panic(v)
// }
type RecentMeURLClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() RecentMeURLClass
// 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
// URL
GetURL() (value string)
}
// DecodeRecentMeURL implements binary de-serialization for RecentMeURLClass.
func DecodeRecentMeURL(buf *bin.Buffer) (RecentMeURLClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case RecentMeURLUnknownTypeID:
// Decoding recentMeUrlUnknown#46e1d13d.
v := RecentMeURLUnknown{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
}
return &v, nil
case RecentMeURLUserTypeID:
// Decoding recentMeUrlUser#8dbc3336.
v := RecentMeURLUser{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
}
return &v, nil
case RecentMeURLChatTypeID:
// Decoding recentMeUrlChat#a01b22f9.
v := RecentMeURLChat{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
}
return &v, nil
case RecentMeURLChatInviteTypeID:
// Decoding recentMeUrlChatInvite#eb49081d.
v := RecentMeURLChatInvite{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
}
return &v, nil
case RecentMeURLStickerSetTypeID:
// Decoding recentMeUrlStickerSet#bc0a57dc.
v := RecentMeURLStickerSet{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", bin.NewUnexpectedID(id))
}
}
// RecentMeURL boxes the RecentMeURLClass providing a helper.
type RecentMeURLBox struct {
RecentMeUrl RecentMeURLClass
}
// Decode implements bin.Decoder for RecentMeURLBox.
func (b *RecentMeURLBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode RecentMeURLBox to nil")
}
v, err := DecodeRecentMeURL(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.RecentMeUrl = v
return nil
}
// Encode implements bin.Encode for RecentMeURLBox.
func (b *RecentMeURLBox) Encode(buf *bin.Buffer) error {
if b == nil || b.RecentMeUrl == nil {
return fmt.Errorf("unable to encode RecentMeURLClass as nil")
}
return b.RecentMeUrl.Encode(buf)
}
// RecentMeURLClassArray is adapter for slice of RecentMeURLClass.
type RecentMeURLClassArray []RecentMeURLClass
// Sort sorts slice of RecentMeURLClass.
func (s RecentMeURLClassArray) Sort(less func(a, b RecentMeURLClass) bool) RecentMeURLClassArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of RecentMeURLClass.
func (s RecentMeURLClassArray) SortStable(less func(a, b RecentMeURLClass) bool) RecentMeURLClassArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of RecentMeURLClass.
func (s RecentMeURLClassArray) Retain(keep func(x RecentMeURLClass) bool) RecentMeURLClassArray {
n := 0
for _, x := range s {
if keep(x) {
s[n] = x
n++
}
}
s = s[:n]
return s
}
// First returns first element of slice (if exists).
func (s RecentMeURLClassArray) First() (v RecentMeURLClass, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s RecentMeURLClassArray) Last() (v RecentMeURLClass, ok bool) {
if len(s) < 1 {
return
}
return s[len(s)-1], true
}
// PopFirst returns first element of slice (if exists) and deletes it.
func (s *RecentMeURLClassArray) PopFirst() (v RecentMeURLClass, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[0]
// Delete by index from SliceTricks.
copy(a[0:], a[1:])
var zero RecentMeURLClass
a[len(a)-1] = zero
a = a[:len(a)-1]
*s = a
return v, true
}
// Pop returns last element of slice (if exists) and deletes it.
func (s *RecentMeURLClassArray) Pop() (v RecentMeURLClass, ok bool) {
if s == nil || len(*s) < 1 {
return
}
a := *s
v = a[len(a)-1]
a = a[:len(a)-1]
*s = a
return v, true
}
// AsRecentMeURLUnknown returns copy with only RecentMeURLUnknown constructors.
func (s RecentMeURLClassArray) AsRecentMeURLUnknown() (to RecentMeURLUnknownArray) {
for _, elem := range s {
value, ok := elem.(*RecentMeURLUnknown)
if !ok {
continue
}
to = append(to, *value)
}