-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
tl_user_status_gen.go
1091 lines (940 loc) · 26.3 KB
/
tl_user_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
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{}
)
// UserStatusEmpty represents TL type `userStatusEmpty#9d05049`.
// User status has not been set yet.
//
// See https://core.telegram.org/constructor/userStatusEmpty for reference.
type UserStatusEmpty struct {
}
// UserStatusEmptyTypeID is TL type id of UserStatusEmpty.
const UserStatusEmptyTypeID = 0x9d05049
func (u *UserStatusEmpty) Zero() bool {
if u == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (u *UserStatusEmpty) String() string {
if u == nil {
return "UserStatusEmpty(nil)"
}
type Alias UserStatusEmpty
return fmt.Sprintf("UserStatusEmpty%+v", Alias(*u))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*UserStatusEmpty) TypeID() uint32 {
return UserStatusEmptyTypeID
}
// TypeName returns name of type in TL schema.
func (*UserStatusEmpty) TypeName() string {
return "userStatusEmpty"
}
// TypeInfo returns info about TL type.
func (u *UserStatusEmpty) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "userStatusEmpty",
ID: UserStatusEmptyTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (u *UserStatusEmpty) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusEmpty#9d05049 as nil")
}
b.PutID(UserStatusEmptyTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *UserStatusEmpty) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusEmpty#9d05049 as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (u *UserStatusEmpty) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusEmpty#9d05049 to nil")
}
if err := b.ConsumeID(UserStatusEmptyTypeID); err != nil {
return fmt.Errorf("unable to decode userStatusEmpty#9d05049: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *UserStatusEmpty) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusEmpty#9d05049 to nil")
}
return nil
}
// construct implements constructor of UserStatusClass.
func (u UserStatusEmpty) construct() UserStatusClass { return &u }
// Ensuring interfaces in compile-time for UserStatusEmpty.
var (
_ bin.Encoder = &UserStatusEmpty{}
_ bin.Decoder = &UserStatusEmpty{}
_ bin.BareEncoder = &UserStatusEmpty{}
_ bin.BareDecoder = &UserStatusEmpty{}
_ UserStatusClass = &UserStatusEmpty{}
)
// UserStatusOnline represents TL type `userStatusOnline#edb93949`.
// Online status of the user.
//
// See https://core.telegram.org/constructor/userStatusOnline for reference.
type UserStatusOnline struct {
// Time to expiration of the current online status
Expires int
}
// UserStatusOnlineTypeID is TL type id of UserStatusOnline.
const UserStatusOnlineTypeID = 0xedb93949
func (u *UserStatusOnline) Zero() bool {
if u == nil {
return true
}
if !(u.Expires == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (u *UserStatusOnline) String() string {
if u == nil {
return "UserStatusOnline(nil)"
}
type Alias UserStatusOnline
return fmt.Sprintf("UserStatusOnline%+v", Alias(*u))
}
// FillFrom fills UserStatusOnline from given interface.
func (u *UserStatusOnline) FillFrom(from interface {
GetExpires() (value int)
}) {
u.Expires = from.GetExpires()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*UserStatusOnline) TypeID() uint32 {
return UserStatusOnlineTypeID
}
// TypeName returns name of type in TL schema.
func (*UserStatusOnline) TypeName() string {
return "userStatusOnline"
}
// TypeInfo returns info about TL type.
func (u *UserStatusOnline) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "userStatusOnline",
ID: UserStatusOnlineTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "Expires",
SchemaName: "expires",
},
}
return typ
}
// Encode implements bin.Encoder.
func (u *UserStatusOnline) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusOnline#edb93949 as nil")
}
b.PutID(UserStatusOnlineTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *UserStatusOnline) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusOnline#edb93949 as nil")
}
b.PutInt(u.Expires)
return nil
}
// GetExpires returns value of Expires field.
func (u *UserStatusOnline) GetExpires() (value int) {
return u.Expires
}
// Decode implements bin.Decoder.
func (u *UserStatusOnline) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusOnline#edb93949 to nil")
}
if err := b.ConsumeID(UserStatusOnlineTypeID); err != nil {
return fmt.Errorf("unable to decode userStatusOnline#edb93949: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *UserStatusOnline) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusOnline#edb93949 to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode userStatusOnline#edb93949: field expires: %w", err)
}
u.Expires = value
}
return nil
}
// construct implements constructor of UserStatusClass.
func (u UserStatusOnline) construct() UserStatusClass { return &u }
// Ensuring interfaces in compile-time for UserStatusOnline.
var (
_ bin.Encoder = &UserStatusOnline{}
_ bin.Decoder = &UserStatusOnline{}
_ bin.BareEncoder = &UserStatusOnline{}
_ bin.BareDecoder = &UserStatusOnline{}
_ UserStatusClass = &UserStatusOnline{}
)
// UserStatusOffline represents TL type `userStatusOffline#8c703f`.
// The user's offline status.
//
// See https://core.telegram.org/constructor/userStatusOffline for reference.
type UserStatusOffline struct {
// Time the user was last seen online
WasOnline int
}
// UserStatusOfflineTypeID is TL type id of UserStatusOffline.
const UserStatusOfflineTypeID = 0x8c703f
func (u *UserStatusOffline) Zero() bool {
if u == nil {
return true
}
if !(u.WasOnline == 0) {
return false
}
return true
}
// String implements fmt.Stringer.
func (u *UserStatusOffline) String() string {
if u == nil {
return "UserStatusOffline(nil)"
}
type Alias UserStatusOffline
return fmt.Sprintf("UserStatusOffline%+v", Alias(*u))
}
// FillFrom fills UserStatusOffline from given interface.
func (u *UserStatusOffline) FillFrom(from interface {
GetWasOnline() (value int)
}) {
u.WasOnline = from.GetWasOnline()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*UserStatusOffline) TypeID() uint32 {
return UserStatusOfflineTypeID
}
// TypeName returns name of type in TL schema.
func (*UserStatusOffline) TypeName() string {
return "userStatusOffline"
}
// TypeInfo returns info about TL type.
func (u *UserStatusOffline) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "userStatusOffline",
ID: UserStatusOfflineTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "WasOnline",
SchemaName: "was_online",
},
}
return typ
}
// Encode implements bin.Encoder.
func (u *UserStatusOffline) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusOffline#8c703f as nil")
}
b.PutID(UserStatusOfflineTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *UserStatusOffline) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusOffline#8c703f as nil")
}
b.PutInt(u.WasOnline)
return nil
}
// GetWasOnline returns value of WasOnline field.
func (u *UserStatusOffline) GetWasOnline() (value int) {
return u.WasOnline
}
// Decode implements bin.Decoder.
func (u *UserStatusOffline) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusOffline#8c703f to nil")
}
if err := b.ConsumeID(UserStatusOfflineTypeID); err != nil {
return fmt.Errorf("unable to decode userStatusOffline#8c703f: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *UserStatusOffline) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusOffline#8c703f to nil")
}
{
value, err := b.Int()
if err != nil {
return fmt.Errorf("unable to decode userStatusOffline#8c703f: field was_online: %w", err)
}
u.WasOnline = value
}
return nil
}
// construct implements constructor of UserStatusClass.
func (u UserStatusOffline) construct() UserStatusClass { return &u }
// Ensuring interfaces in compile-time for UserStatusOffline.
var (
_ bin.Encoder = &UserStatusOffline{}
_ bin.Decoder = &UserStatusOffline{}
_ bin.BareEncoder = &UserStatusOffline{}
_ bin.BareDecoder = &UserStatusOffline{}
_ UserStatusClass = &UserStatusOffline{}
)
// UserStatusRecently represents TL type `userStatusRecently#e26f42f1`.
// Online status: last seen recently
//
// See https://core.telegram.org/constructor/userStatusRecently for reference.
type UserStatusRecently struct {
}
// UserStatusRecentlyTypeID is TL type id of UserStatusRecently.
const UserStatusRecentlyTypeID = 0xe26f42f1
func (u *UserStatusRecently) Zero() bool {
if u == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (u *UserStatusRecently) String() string {
if u == nil {
return "UserStatusRecently(nil)"
}
type Alias UserStatusRecently
return fmt.Sprintf("UserStatusRecently%+v", Alias(*u))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*UserStatusRecently) TypeID() uint32 {
return UserStatusRecentlyTypeID
}
// TypeName returns name of type in TL schema.
func (*UserStatusRecently) TypeName() string {
return "userStatusRecently"
}
// TypeInfo returns info about TL type.
func (u *UserStatusRecently) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "userStatusRecently",
ID: UserStatusRecentlyTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (u *UserStatusRecently) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusRecently#e26f42f1 as nil")
}
b.PutID(UserStatusRecentlyTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *UserStatusRecently) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusRecently#e26f42f1 as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (u *UserStatusRecently) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusRecently#e26f42f1 to nil")
}
if err := b.ConsumeID(UserStatusRecentlyTypeID); err != nil {
return fmt.Errorf("unable to decode userStatusRecently#e26f42f1: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *UserStatusRecently) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusRecently#e26f42f1 to nil")
}
return nil
}
// construct implements constructor of UserStatusClass.
func (u UserStatusRecently) construct() UserStatusClass { return &u }
// Ensuring interfaces in compile-time for UserStatusRecently.
var (
_ bin.Encoder = &UserStatusRecently{}
_ bin.Decoder = &UserStatusRecently{}
_ bin.BareEncoder = &UserStatusRecently{}
_ bin.BareDecoder = &UserStatusRecently{}
_ UserStatusClass = &UserStatusRecently{}
)
// UserStatusLastWeek represents TL type `userStatusLastWeek#7bf09fc`.
// Online status: last seen last week
//
// See https://core.telegram.org/constructor/userStatusLastWeek for reference.
type UserStatusLastWeek struct {
}
// UserStatusLastWeekTypeID is TL type id of UserStatusLastWeek.
const UserStatusLastWeekTypeID = 0x7bf09fc
func (u *UserStatusLastWeek) Zero() bool {
if u == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (u *UserStatusLastWeek) String() string {
if u == nil {
return "UserStatusLastWeek(nil)"
}
type Alias UserStatusLastWeek
return fmt.Sprintf("UserStatusLastWeek%+v", Alias(*u))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*UserStatusLastWeek) TypeID() uint32 {
return UserStatusLastWeekTypeID
}
// TypeName returns name of type in TL schema.
func (*UserStatusLastWeek) TypeName() string {
return "userStatusLastWeek"
}
// TypeInfo returns info about TL type.
func (u *UserStatusLastWeek) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "userStatusLastWeek",
ID: UserStatusLastWeekTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (u *UserStatusLastWeek) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusLastWeek#7bf09fc as nil")
}
b.PutID(UserStatusLastWeekTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *UserStatusLastWeek) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusLastWeek#7bf09fc as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (u *UserStatusLastWeek) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusLastWeek#7bf09fc to nil")
}
if err := b.ConsumeID(UserStatusLastWeekTypeID); err != nil {
return fmt.Errorf("unable to decode userStatusLastWeek#7bf09fc: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *UserStatusLastWeek) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusLastWeek#7bf09fc to nil")
}
return nil
}
// construct implements constructor of UserStatusClass.
func (u UserStatusLastWeek) construct() UserStatusClass { return &u }
// Ensuring interfaces in compile-time for UserStatusLastWeek.
var (
_ bin.Encoder = &UserStatusLastWeek{}
_ bin.Decoder = &UserStatusLastWeek{}
_ bin.BareEncoder = &UserStatusLastWeek{}
_ bin.BareDecoder = &UserStatusLastWeek{}
_ UserStatusClass = &UserStatusLastWeek{}
)
// UserStatusLastMonth represents TL type `userStatusLastMonth#77ebc742`.
// Online status: last seen last month
//
// See https://core.telegram.org/constructor/userStatusLastMonth for reference.
type UserStatusLastMonth struct {
}
// UserStatusLastMonthTypeID is TL type id of UserStatusLastMonth.
const UserStatusLastMonthTypeID = 0x77ebc742
func (u *UserStatusLastMonth) Zero() bool {
if u == nil {
return true
}
return true
}
// String implements fmt.Stringer.
func (u *UserStatusLastMonth) String() string {
if u == nil {
return "UserStatusLastMonth(nil)"
}
type Alias UserStatusLastMonth
return fmt.Sprintf("UserStatusLastMonth%+v", Alias(*u))
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*UserStatusLastMonth) TypeID() uint32 {
return UserStatusLastMonthTypeID
}
// TypeName returns name of type in TL schema.
func (*UserStatusLastMonth) TypeName() string {
return "userStatusLastMonth"
}
// TypeInfo returns info about TL type.
func (u *UserStatusLastMonth) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "userStatusLastMonth",
ID: UserStatusLastMonthTypeID,
}
if u == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{}
return typ
}
// Encode implements bin.Encoder.
func (u *UserStatusLastMonth) Encode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusLastMonth#77ebc742 as nil")
}
b.PutID(UserStatusLastMonthTypeID)
return u.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (u *UserStatusLastMonth) EncodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't encode userStatusLastMonth#77ebc742 as nil")
}
return nil
}
// Decode implements bin.Decoder.
func (u *UserStatusLastMonth) Decode(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusLastMonth#77ebc742 to nil")
}
if err := b.ConsumeID(UserStatusLastMonthTypeID); err != nil {
return fmt.Errorf("unable to decode userStatusLastMonth#77ebc742: %w", err)
}
return u.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (u *UserStatusLastMonth) DecodeBare(b *bin.Buffer) error {
if u == nil {
return fmt.Errorf("can't decode userStatusLastMonth#77ebc742 to nil")
}
return nil
}
// construct implements constructor of UserStatusClass.
func (u UserStatusLastMonth) construct() UserStatusClass { return &u }
// Ensuring interfaces in compile-time for UserStatusLastMonth.
var (
_ bin.Encoder = &UserStatusLastMonth{}
_ bin.Decoder = &UserStatusLastMonth{}
_ bin.BareEncoder = &UserStatusLastMonth{}
_ bin.BareDecoder = &UserStatusLastMonth{}
_ UserStatusClass = &UserStatusLastMonth{}
)
// UserStatusClass represents UserStatus generic type.
//
// See https://core.telegram.org/type/UserStatus for reference.
//
// Example:
// g, err := tg.DecodeUserStatus(buf)
// if err != nil {
// panic(err)
// }
// switch v := g.(type) {
// case *tg.UserStatusEmpty: // userStatusEmpty#9d05049
// case *tg.UserStatusOnline: // userStatusOnline#edb93949
// case *tg.UserStatusOffline: // userStatusOffline#8c703f
// case *tg.UserStatusRecently: // userStatusRecently#e26f42f1
// case *tg.UserStatusLastWeek: // userStatusLastWeek#7bf09fc
// case *tg.UserStatusLastMonth: // userStatusLastMonth#77ebc742
// default: panic(v)
// }
type UserStatusClass interface {
bin.Encoder
bin.Decoder
bin.BareEncoder
bin.BareDecoder
construct() UserStatusClass
// 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
}
// DecodeUserStatus implements binary de-serialization for UserStatusClass.
func DecodeUserStatus(buf *bin.Buffer) (UserStatusClass, error) {
id, err := buf.PeekID()
if err != nil {
return nil, err
}
switch id {
case UserStatusEmptyTypeID:
// Decoding userStatusEmpty#9d05049.
v := UserStatusEmpty{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
}
return &v, nil
case UserStatusOnlineTypeID:
// Decoding userStatusOnline#edb93949.
v := UserStatusOnline{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
}
return &v, nil
case UserStatusOfflineTypeID:
// Decoding userStatusOffline#8c703f.
v := UserStatusOffline{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
}
return &v, nil
case UserStatusRecentlyTypeID:
// Decoding userStatusRecently#e26f42f1.
v := UserStatusRecently{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
}
return &v, nil
case UserStatusLastWeekTypeID:
// Decoding userStatusLastWeek#7bf09fc.
v := UserStatusLastWeek{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
}
return &v, nil
case UserStatusLastMonthTypeID:
// Decoding userStatusLastMonth#77ebc742.
v := UserStatusLastMonth{}
if err := v.Decode(buf); err != nil {
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
}
return &v, nil
default:
return nil, fmt.Errorf("unable to decode UserStatusClass: %w", bin.NewUnexpectedID(id))
}
}
// UserStatus boxes the UserStatusClass providing a helper.
type UserStatusBox struct {
UserStatus UserStatusClass
}
// Decode implements bin.Decoder for UserStatusBox.
func (b *UserStatusBox) Decode(buf *bin.Buffer) error {
if b == nil {
return fmt.Errorf("unable to decode UserStatusBox to nil")
}
v, err := DecodeUserStatus(buf)
if err != nil {
return fmt.Errorf("unable to decode boxed value: %w", err)
}
b.UserStatus = v
return nil
}
// Encode implements bin.Encode for UserStatusBox.
func (b *UserStatusBox) Encode(buf *bin.Buffer) error {
if b == nil || b.UserStatus == nil {
return fmt.Errorf("unable to encode UserStatusClass as nil")
}
return b.UserStatus.Encode(buf)
}
// UserStatusClassArray is adapter for slice of UserStatusClass.
type UserStatusClassArray []UserStatusClass
// Sort sorts slice of UserStatusClass.
func (s UserStatusClassArray) Sort(less func(a, b UserStatusClass) bool) UserStatusClassArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of UserStatusClass.
func (s UserStatusClassArray) SortStable(less func(a, b UserStatusClass) bool) UserStatusClassArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of UserStatusClass.
func (s UserStatusClassArray) Retain(keep func(x UserStatusClass) bool) UserStatusClassArray {
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 UserStatusClassArray) First() (v UserStatusClass, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s UserStatusClassArray) Last() (v UserStatusClass, 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 *UserStatusClassArray) PopFirst() (v UserStatusClass, 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 UserStatusClass
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 *UserStatusClassArray) Pop() (v UserStatusClass, 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
}
// AsUserStatusOnline returns copy with only UserStatusOnline constructors.
func (s UserStatusClassArray) AsUserStatusOnline() (to UserStatusOnlineArray) {
for _, elem := range s {
value, ok := elem.(*UserStatusOnline)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// AsUserStatusOffline returns copy with only UserStatusOffline constructors.
func (s UserStatusClassArray) AsUserStatusOffline() (to UserStatusOfflineArray) {
for _, elem := range s {
value, ok := elem.(*UserStatusOffline)
if !ok {
continue
}
to = append(to, *value)
}
return to
}
// UserStatusOnlineArray is adapter for slice of UserStatusOnline.
type UserStatusOnlineArray []UserStatusOnline
// Sort sorts slice of UserStatusOnline.
func (s UserStatusOnlineArray) Sort(less func(a, b UserStatusOnline) bool) UserStatusOnlineArray {
sort.Slice(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// SortStable sorts slice of UserStatusOnline.
func (s UserStatusOnlineArray) SortStable(less func(a, b UserStatusOnline) bool) UserStatusOnlineArray {
sort.SliceStable(s, func(i, j int) bool {
return less(s[i], s[j])
})
return s
}
// Retain filters in-place slice of UserStatusOnline.
func (s UserStatusOnlineArray) Retain(keep func(x UserStatusOnline) bool) UserStatusOnlineArray {
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 UserStatusOnlineArray) First() (v UserStatusOnline, ok bool) {
if len(s) < 1 {
return
}
return s[0], true
}
// Last returns last element of slice (if exists).
func (s UserStatusOnlineArray) Last() (v UserStatusOnline, 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 *UserStatusOnlineArray) PopFirst() (v UserStatusOnline, 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 UserStatusOnline
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 *UserStatusOnlineArray) Pop() (v UserStatusOnline, ok bool) {
if s == nil || len(*s) < 1 {
return