forked from sdidyk/mtproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tl_schema.go
8283 lines (7044 loc) · 162 KB
/
tl_schema.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
package mtproto
import "fmt"
const (
crc_boolFalse = 0xbc799737
crc_boolTrue = 0x997275b5
crc_error = 0xc4b9f9bb
crc_null = 0x56730bcc
crc_inputPeerEmpty = 0x7f3b18ea
crc_inputPeerSelf = 0x7da07ec9
crc_inputPeerContact = 0x1023dbe8
crc_inputPeerForeign = 0x9b447325
crc_inputPeerChat = 0x179be863
crc_inputUserEmpty = 0xb98886cf
crc_inputUserSelf = 0xf7c1b13f
crc_inputUserContact = 0x86e94f65
crc_inputUserForeign = 0x655e74ff
crc_inputPhoneContact = 0xf392b7f4
crc_inputFile = 0xf52ff27f
crc_inputMediaEmpty = 0x9664f57f
crc_inputMediaUploadedPhoto = 0x2dc53a7d
crc_inputMediaPhoto = 0x8f2ab2ec
crc_inputMediaGeoPoint = 0xf9c44144
crc_inputMediaContact = 0xa6e45987
crc_inputMediaUploadedVideo = 0x133ad6f6
crc_inputMediaUploadedThumbVideo = 0x9912dabf
crc_inputMediaVideo = 0x7f023ae6
crc_inputChatPhotoEmpty = 0x1ca48f57
crc_inputChatUploadedPhoto = 0x94254732
crc_inputChatPhoto = 0xb2e1bf08
crc_inputGeoPointEmpty = 0xe4c123d6
crc_inputGeoPoint = 0xf3b7acc9
crc_inputPhotoEmpty = 0x1cd7bf0d
crc_inputPhoto = 0xfb95c6c4
crc_inputVideoEmpty = 0x5508ec75
crc_inputVideo = 0xee579652
crc_inputFileLocation = 0x14637196
crc_inputVideoFileLocation = 0x3d0364ec
crc_inputPhotoCropAuto = 0xade6b004
crc_inputPhotoCrop = 0xd9915325
crc_inputAppEvent = 0x770656a8
crc_peerUser = 0x9db1bc6d
crc_peerChat = 0xbad0e5bb
crc_storage_fileUnknown = 0xaa963b05
crc_storage_fileJpeg = 0x007efe0e
crc_storage_fileGif = 0xcae1aadf
crc_storage_filePng = 0x0a4f63c0
crc_storage_filePdf = 0xae1e508d
crc_storage_fileMp3 = 0x528a0677
crc_storage_fileMov = 0x4b09ebbc
crc_storage_filePartial = 0x40bc6f52
crc_storage_fileMp4 = 0xb3cea0e4
crc_storage_fileWebp = 0x1081464c
crc_fileLocationUnavailable = 0x7c596b46
crc_fileLocation = 0x53d69076
crc_userEmpty = 0x200250ba
crc_userSelf = 0x7007b451
crc_userContact = 0xcab35e18
crc_userRequest = 0xd9ccc4ef
crc_userForeign = 0x075cf7a8
crc_userDeleted = 0xd6016d7a
crc_userProfilePhotoEmpty = 0x4f11bae1
crc_userProfilePhoto = 0xd559d8c8
crc_userStatusEmpty = 0x09d05049
crc_userStatusOnline = 0xedb93949
crc_userStatusOffline = 0x008c703f
crc_chatEmpty = 0x9ba2d800
crc_chat = 0x6e9c9bc7
crc_chatForbidden = 0xfb0ccc41
crc_chatFull = 0x630e61be
crc_chatParticipant = 0xc8d7493e
crc_chatParticipantsForbidden = 0x0fd2bb8a
crc_chatParticipants = 0x7841b415
crc_chatPhotoEmpty = 0x37c1011c
crc_chatPhoto = 0x6153276a
crc_messageEmpty = 0x83e5de54
crc_message = 0x567699b3
crc_messageForwarded = 0xa367e716
crc_messageService = 0x1d86f70e
crc_messageMediaEmpty = 0x3ded6320
crc_messageMediaPhoto = 0xc8c45a2a
crc_messageMediaVideo = 0xa2d24290
crc_messageMediaGeo = 0x56e0d474
crc_messageMediaContact = 0x5e7d2f39
crc_messageMediaUnsupported = 0x29632a36
crc_messageActionEmpty = 0xb6aef7b0
crc_messageActionChatCreate = 0xa6638b9a
crc_messageActionChatEditTitle = 0xb5a1ce5a
crc_messageActionChatEditPhoto = 0x7fcb13a8
crc_messageActionChatDeletePhoto = 0x95e3fbef
crc_messageActionChatAddUser = 0x5e3cfc4b
crc_messageActionChatDeleteUser = 0xb2ae9b0c
crc_dialog = 0xab3a99ac
crc_photoEmpty = 0x2331b22d
crc_photo = 0x22b56751
crc_photoSizeEmpty = 0x0e17e23c
crc_photoSize = 0x77bfb61b
crc_photoCachedSize = 0xe9a734fa
crc_videoEmpty = 0xc10658a8
crc_video = 0x388fa391
crc_geoPointEmpty = 0x1117dd5f
crc_geoPoint = 0x2049d70c
crc_auth_checkedPhone = 0xe300cc3b
crc_auth_sentCode = 0xefed51d9
crc_auth_authorization = 0xf6b673a4
crc_auth_exportedAuthorization = 0xdf969c2d
crc_inputNotifyPeer = 0xb8bc5b0c
crc_inputNotifyUsers = 0x193b4417
crc_inputNotifyChats = 0x4a95e84e
crc_inputNotifyAll = 0xa429b886
crc_inputPeerNotifyEventsEmpty = 0xf03064d8
crc_inputPeerNotifyEventsAll = 0xe86a2c74
crc_inputPeerNotifySettings = 0x46a2ce98
crc_peerNotifyEventsEmpty = 0xadd53cb3
crc_peerNotifyEventsAll = 0x6d1ded88
crc_peerNotifySettingsEmpty = 0x70a68512
crc_peerNotifySettings = 0x8d5e11ee
crc_wallPaper = 0xccb03657
crc_userFull = 0x771095da
crc_contact = 0xf911c994
crc_importedContact = 0xd0028438
crc_contactBlocked = 0x561bc879
crc_contactSuggested = 0x3de191a1
crc_contactStatus = 0xd3680c61
crc_chatLocated = 0x3631cf4c
crc_contacts_foreignLinkUnknown = 0x133421f8
crc_contacts_foreignLinkRequested = 0xa7801f47
crc_contacts_foreignLinkMutual = 0x1bea8ce1
crc_contacts_myLinkEmpty = 0xd22a1c60
crc_contacts_myLinkRequested = 0x6c69efee
crc_contacts_myLinkContact = 0xc240ebd9
crc_contacts_link = 0xeccea3f5
crc_contacts_contactsNotModified = 0xb74ba9d2
crc_contacts_contacts = 0x6f8b8cb2
crc_contacts_importedContacts = 0xad524315
crc_contacts_blocked = 0x1c138d15
crc_contacts_blockedSlice = 0x900802a1
crc_contacts_suggested = 0x5649dcc5
crc_messages_dialogs = 0x15ba6c40
crc_messages_dialogsSlice = 0x71e094f3
crc_messages_messages = 0x8c718e87
crc_messages_messagesSlice = 0x0b446ae3
crc_messages_messageEmpty = 0x3f4e0648
crc_messages_statedMessages = 0x969478bb
crc_messages_statedMessage = 0xd07ae726
crc_messages_sentMessage = 0xd1f4d35c
crc_messages_chats = 0x8150cbd8
crc_messages_chatFull = 0xe5d7d19c
crc_messages_affectedHistory = 0xb7de36f2
crc_inputMessagesFilterEmpty = 0x57e2f66c
crc_inputMessagesFilterPhotos = 0x9609a51c
crc_inputMessagesFilterVideo = 0x9fc00e65
crc_inputMessagesFilterPhotoVideo = 0x56e9f0e4
crc_inputMessagesFilterPhotoVideoDocuments = 0xd95e73bb
crc_inputMessagesFilterDocument = 0x9eddf188
crc_inputMessagesFilterAudio = 0xcfc87522
crc_updateNewMessage = 0x013abdb3
crc_updateMessageID = 0x4e90bfd6
crc_updateReadMessages = 0xc6649e31
crc_updateDeleteMessages = 0xa92bfe26
crc_updateUserTyping = 0x5c486927
crc_updateChatUserTyping = 0x9a65ea1f
crc_updateChatParticipants = 0x07761198
crc_updateUserStatus = 0x1bfbd823
crc_updateUserName = 0xa7332b73
crc_updateUserPhoto = 0x95313b0c
crc_updateContactRegistered = 0x2575bbb9
crc_updateContactLink = 0x51a48a9a
crc_updateNewAuthorization = 0x8f06529a
crc_updates_state = 0xa56c2a3e
crc_updates_differenceEmpty = 0x5d75a138
crc_updates_difference = 0x00f49ca0
crc_updates_differenceSlice = 0xa8fb1981
crc_updatesTooLong = 0xe317af7e
crc_updateShortMessage = 0xd3f45784
crc_updateShortChatMessage = 0x2b2fbd4e
crc_updateShort = 0x78d4dec1
crc_updatesCombined = 0x725b04c3
crc_updates = 0x74ae4240
crc_photos_photos = 0x8dca6aa5
crc_photos_photosSlice = 0x15051f54
crc_photos_photo = 0x20212ca8
crc_upload_file = 0x096a18d5
crc_dcOption = 0x2ec2a43c
crc_config = 0x7dae33e0
crc_nearestDc = 0x8e1a1775
crc_help_appUpdate = 0x8987f311
crc_help_noAppUpdate = 0xc45a6536
crc_help_inviteText = 0x18cb9f78
crc_messages_statedMessagesLinks = 0x3e74f5c6
crc_messages_statedMessageLink = 0xa9af2881
crc_messages_sentMessageLink = 0xe9db4a3f
crc_inputGeoChat = 0x74d456fa
crc_inputNotifyGeoChatPeer = 0x4d8ddec8
crc_geoChat = 0x75eaea5a
crc_geoChatMessageEmpty = 0x60311a9b
crc_geoChatMessage = 0x4505f8e1
crc_geoChatMessageService = 0xd34fa24e
crc_geochats_statedMessage = 0x17b1578b
crc_geochats_located = 0x48feb267
crc_geochats_messages = 0xd1526db1
crc_geochats_messagesSlice = 0xbc5863e8
crc_messageActionGeoChatCreate = 0x6f038ebc
crc_messageActionGeoChatCheckin = 0x0c7d53de
crc_updateNewGeoChatMessage = 0x5a68e3f7
crc_wallPaperSolid = 0x63117f24
crc_updateNewEncryptedMessage = 0x12bcbd9a
crc_updateEncryptedChatTyping = 0x1710f156
crc_updateEncryption = 0xb4a2e88d
crc_updateEncryptedMessagesRead = 0x38fe25b7
crc_encryptedChatEmpty = 0xab7ec0a0
crc_encryptedChatWaiting = 0x3bf703dc
crc_encryptedChatRequested = 0xc878527e
crc_encryptedChat = 0xfa56ce36
crc_encryptedChatDiscarded = 0x13d6dd27
crc_inputEncryptedChat = 0xf141b5e1
crc_encryptedFileEmpty = 0xc21f497e
crc_encryptedFile = 0x4a70994c
crc_inputEncryptedFileEmpty = 0x1837c364
crc_inputEncryptedFileUploaded = 0x64bd0306
crc_inputEncryptedFile = 0x5a17b5e5
crc_inputEncryptedFileLocation = 0xf5235d55
crc_encryptedMessage = 0xed18c118
crc_encryptedMessageService = 0x23734b06
crc_messages_dhConfigNotModified = 0xc0e24635
crc_messages_dhConfig = 0x2c221edd
crc_messages_sentEncryptedMessage = 0x560f8935
crc_messages_sentEncryptedFile = 0x9493ff32
crc_inputFileBig = 0xfa4f0bb5
crc_inputEncryptedFileBigUploaded = 0x2dc173c8
crc_updateChatParticipantAdd = 0x3a0eeb22
crc_updateChatParticipantDelete = 0x6e5f8c22
crc_updateDcOptions = 0x8e5e9873
crc_inputMediaUploadedAudio = 0x4e498cab
crc_inputMediaAudio = 0x89938781
crc_inputMediaUploadedDocument = 0xffe76b78
crc_inputMediaUploadedThumbDocument = 0x41481486
crc_inputMediaDocument = 0xd184e841
crc_messageMediaDocument = 0x2fda2204
crc_messageMediaAudio = 0xc6b68300
crc_inputAudioEmpty = 0xd95adc84
crc_inputAudio = 0x77d440ff
crc_inputDocumentEmpty = 0x72f0eaae
crc_inputDocument = 0x18798952
crc_inputAudioFileLocation = 0x74dc404d
crc_inputDocumentFileLocation = 0x4e45abe9
crc_audioEmpty = 0x586988d8
crc_audio = 0xc7ac6496
crc_documentEmpty = 0x36f8c871
crc_document = 0xf9a39f4f
crc_help_support = 0x17c6b5f6
crc_notifyPeer = 0x9fd40bd8
crc_notifyUsers = 0xb4c83b4c
crc_notifyChats = 0xc007cec3
crc_notifyAll = 0x74d07c60
crc_updateUserBlocked = 0x80ece81a
crc_updateNotifySettings = 0xbec268ef
crc_auth_sentAppCode = 0xe325edcf
crc_sendMessageTypingAction = 0x16bf744e
crc_sendMessageCancelAction = 0xfd5ec8f5
crc_sendMessageRecordVideoAction = 0xa187d66f
crc_sendMessageUploadVideoAction = 0x92042ff7
crc_sendMessageRecordAudioAction = 0xd52f73f7
crc_sendMessageUploadAudioAction = 0xe6ac8a6f
crc_sendMessageUploadPhotoAction = 0x990a3c1a
crc_sendMessageUploadDocumentAction = 0x8faee98e
crc_sendMessageGeoLocationAction = 0x176f8ba1
crc_sendMessageChooseContactAction = 0x628cbc6f
crc_contactFound = 0xea879f95
crc_contacts_found = 0x0566000e
crc_updateServiceNotification = 0x382dd3e4
crc_userStatusRecently = 0xe26f42f1
crc_userStatusLastWeek = 0x07bf09fc
crc_userStatusLastMonth = 0x77ebc742
crc_updatePrivacy = 0xee3b272a
crc_inputPrivacyKeyStatusTimestamp = 0x4f96cb18
crc_privacyKeyStatusTimestamp = 0xbc2eab30
crc_inputPrivacyValueAllowContacts = 0x0d09e07b
crc_inputPrivacyValueAllowAll = 0x184b35ce
crc_inputPrivacyValueAllowUsers = 0x131cc67f
crc_inputPrivacyValueDisallowContacts = 0x0ba52007
crc_inputPrivacyValueDisallowAll = 0xd66b66c9
crc_inputPrivacyValueDisallowUsers = 0x90110467
crc_privacyValueAllowContacts = 0xfffe1bac
crc_privacyValueAllowAll = 0x65427b82
crc_privacyValueAllowUsers = 0x4d5bbe0c
crc_privacyValueDisallowContacts = 0xf888fa1a
crc_privacyValueDisallowAll = 0x8b73e763
crc_privacyValueDisallowUsers = 0x0c7f49b7
crc_account_privacyRules = 0x554abb6f
crc_accountDaysTTL = 0xb8d0afdf
crc_account_sentChangePhoneCode = 0xa4f58c4c
crc_updateUserPhone = 0x12b9417b
crc_documentAttributeImageSize = 0x6c37c15c
crc_documentAttributeAnimated = 0x11b58939
crc_documentAttributeSticker = 0xfb0a5727
crc_documentAttributeVideo = 0x5910cccb
crc_documentAttributeAudio = 0x051448e5
crc_documentAttributeFilename = 0x15590068
crc_messages_stickersNotModified = 0xf1749a22
crc_messages_stickers = 0x8a8ecd32
crc_stickerPack = 0x12b299d4
crc_messages_allStickersNotModified = 0xe86602c3
crc_messages_allStickers = 0xdcef3102
crc_disabledFeature = 0xae636f24
crc_invokeAfterMsg = 0xcb9f372d
crc_invokeAfterMsgs = 0x3dc4b4f0
crc_auth_checkPhone = 0x6fe51dfb
crc_auth_sendCode = 0x768d5f4d
crc_auth_sendCall = 0x03c51564
crc_auth_signUp = 0x1b067634
crc_auth_signIn = 0xbcd51581
crc_auth_logOut = 0x5717da40
crc_auth_resetAuthorizations = 0x9fab0d1a
crc_auth_sendInvites = 0x771c1d97
crc_auth_exportAuthorization = 0xe5bfffcd
crc_auth_importAuthorization = 0xe3ef9613
crc_auth_bindTempAuthKey = 0xcdd42a05
crc_account_registerDevice = 0x446c712c
crc_account_unregisterDevice = 0x65c55b40
crc_account_updateNotifySettings = 0x84be5b93
crc_account_getNotifySettings = 0x12b3ad31
crc_account_resetNotifySettings = 0xdb7e1747
crc_account_updateProfile = 0xf0888d68
crc_account_updateStatus = 0x6628562c
crc_account_getWallPapers = 0xc04cfac2
crc_users_getUsers = 0x0d91a548
crc_users_getFullUser = 0xca30a5b1
crc_contacts_getStatuses = 0xc4a353ee
crc_contacts_getContacts = 0x22c6aa08
crc_contacts_importContacts = 0xda30b32d
crc_contacts_getSuggested = 0xcd773428
crc_contacts_deleteContact = 0x8e953744
crc_contacts_deleteContacts = 0x59ab389e
crc_contacts_block = 0x332b49fc
crc_contacts_unblock = 0xe54100bd
crc_contacts_getBlocked = 0xf57c350f
crc_contacts_exportCard = 0x84e53737
crc_contacts_importCard = 0x4fe196fe
crc_messages_getMessages = 0x4222fa74
crc_messages_getDialogs = 0xeccf1df6
crc_messages_getHistory = 0x92a1df2f
crc_messages_search = 0x07e9f2ab
crc_messages_readHistory = 0xeed884c6
crc_messages_deleteHistory = 0xf4f8fb61
crc_messages_deleteMessages = 0x14f2dd0a
crc_messages_receivedMessages = 0x28abcb68
crc_messages_setTyping = 0xa3825e50
crc_messages_sendMessage = 0x4cde0aab
crc_messages_sendMedia = 0xa3c85d76
crc_messages_forwardMessages = 0x514cd10f
crc_messages_getChats = 0x3c6aa187
crc_messages_getFullChat = 0x3b831c66
crc_messages_editChatTitle = 0xb4bc68b5
crc_messages_editChatPhoto = 0xd881821d
crc_messages_addChatUser = 0x2ee9ee9e
crc_messages_deleteChatUser = 0xc3c5cd23
crc_messages_createChat = 0x419d9aee
crc_updates_getState = 0xedd4882a
crc_updates_getDifference = 0x0a041495
crc_photos_updateProfilePhoto = 0xeef579a0
crc_photos_uploadProfilePhoto = 0xd50f9c88
crc_photos_deletePhotos = 0x87cf7f2f
crc_upload_saveFilePart = 0xb304a621
crc_upload_getFile = 0xe3a6cfb5
crc_help_getConfig = 0xc4f9186b
crc_help_getNearestDc = 0x1fb33026
crc_help_getAppUpdate = 0xc812ac7e
crc_help_saveAppLog = 0x6f02f748
crc_help_getInviteText = 0xa4a95186
crc_photos_getUserPhotos = 0xb7ee553c
crc_messages_forwardMessage = 0x03f3f4f2
crc_messages_sendBroadcast = 0x41bb0972
crc_geochats_getLocated = 0x7f192d8f
crc_geochats_getRecents = 0xe1427e6f
crc_geochats_checkin = 0x55b3e8fb
crc_geochats_getFullChat = 0x6722dd6f
crc_geochats_editChatTitle = 0x4c8e2273
crc_geochats_editChatPhoto = 0x35d81a95
crc_geochats_search = 0xcfcdc44d
crc_geochats_getHistory = 0xb53f7a68
crc_geochats_setTyping = 0x08b8a729
crc_geochats_sendMessage = 0x061b0044
crc_geochats_sendMedia = 0xb8f0deff
crc_geochats_createGeoChat = 0x0e092e16
crc_messages_getDhConfig = 0x26cf8950
crc_messages_requestEncryption = 0xf64daf43
crc_messages_acceptEncryption = 0x3dbc0415
crc_messages_discardEncryption = 0xedd923c5
crc_messages_setEncryptedTyping = 0x791451ed
crc_messages_readEncryptedHistory = 0x7f4b690a
crc_messages_sendEncrypted = 0xa9776773
crc_messages_sendEncryptedFile = 0x9a901b66
crc_messages_sendEncryptedService = 0x32d439a4
crc_messages_receivedQueue = 0x55a5bb66
crc_upload_saveBigFilePart = 0xde7b673d
crc_initConnection = 0x69796de9
crc_help_getSupport = 0x9cdf08cd
crc_auth_sendSms = 0x0da9f3e8
crc_messages_readMessageContents = 0x354b5bc2
crc_account_checkUsername = 0x2714d86c
crc_account_updateUsername = 0x3e0bdd7c
crc_contacts_search = 0x11f812d8
crc_account_getPrivacy = 0xdadbc950
crc_account_setPrivacy = 0xc9f81ce8
crc_account_deleteAccount = 0x418d4e0b
crc_account_getAccountTTL = 0x08fc711d
crc_account_setAccountTTL = 0x2442485e
crc_invokeWithLayer = 0xda9b0d0d
crc_contacts_resolveUsername = 0x0bf0131c
crc_account_sendChangePhoneCode = 0xa407a8f4
crc_account_changePhone = 0x70c32edb
crc_messages_getStickers = 0xae22e045
crc_messages_getAllStickers = 0xaa3bc868
crc_account_updateDeviceLocked = 0x38df3532
)
type TL_boolFalse struct {
}
type TL_boolTrue struct {
}
type TL_error struct {
code int32
text string
}
type TL_null struct {
}
type TL_inputPeerEmpty struct {
}
type TL_inputPeerSelf struct {
}
type TL_inputPeerContact struct {
user_id int32
}
type TL_inputPeerForeign struct {
user_id int32
access_hash int64
}
type TL_inputPeerChat struct {
chat_id int32
}
type TL_inputUserEmpty struct {
}
type TL_inputUserSelf struct {
}
type TL_inputUserContact struct {
user_id int32
}
type TL_inputUserForeign struct {
user_id int32
access_hash int64
}
type TL_inputPhoneContact struct {
client_id int64
phone string
first_name string
last_name string
}
type TL_inputFile struct {
id int64
parts int32
name string
md5_checksum string
}
type TL_inputMediaEmpty struct {
}
type TL_inputMediaUploadedPhoto struct {
file TL // InputFile
}
type TL_inputMediaPhoto struct {
id TL // InputPhoto
}
type TL_inputMediaGeoPoint struct {
geo_point TL // InputGeoPoint
}
type TL_inputMediaContact struct {
phone_number string
first_name string
last_name string
}
type TL_inputMediaUploadedVideo struct {
file TL // InputFile
duration int32
w int32
h int32
mime_type string
}
type TL_inputMediaUploadedThumbVideo struct {
file TL // InputFile
thumb TL // InputFile
duration int32
w int32
h int32
mime_type string
}
type TL_inputMediaVideo struct {
id TL // InputVideo
}
type TL_inputChatPhotoEmpty struct {
}
type TL_inputChatUploadedPhoto struct {
file TL // InputFile
crop TL // InputPhotoCrop
}
type TL_inputChatPhoto struct {
id TL // InputPhoto
crop TL // InputPhotoCrop
}
type TL_inputGeoPointEmpty struct {
}
type TL_inputGeoPoint struct {
lat float64
long float64
}
type TL_inputPhotoEmpty struct {
}
type TL_inputPhoto struct {
id int64
access_hash int64
}
type TL_inputVideoEmpty struct {
}
type TL_inputVideo struct {
id int64
access_hash int64
}
type TL_inputFileLocation struct {
volume_id int64
local_id int32
secret int64
}
type TL_inputVideoFileLocation struct {
id int64
access_hash int64
}
type TL_inputPhotoCropAuto struct {
}
type TL_inputPhotoCrop struct {
crop_left float64
crop_top float64
crop_width float64
}
type TL_inputAppEvent struct {
time float64
_type string
peer int64
data string
}
type TL_peerUser struct {
user_id int32
}
type TL_peerChat struct {
chat_id int32
}
type TL_storage_fileUnknown struct {
}
type TL_storage_fileJpeg struct {
}
type TL_storage_fileGif struct {
}
type TL_storage_filePng struct {
}
type TL_storage_filePdf struct {
}
type TL_storage_fileMp3 struct {
}
type TL_storage_fileMov struct {
}
type TL_storage_filePartial struct {
}
type TL_storage_fileMp4 struct {
}
type TL_storage_fileWebp struct {
}
type TL_fileLocationUnavailable struct {
volume_id int64
local_id int32
secret int64
}
type TL_fileLocation struct {
dc_id int32
volume_id int64
local_id int32
secret int64
}
type TL_userEmpty struct {
id int32
}
type TL_userSelf struct {
id int32
first_name string
last_name string
username string
phone string
photo TL // UserProfilePhoto
status TL // UserStatus
inactive TL // Bool
}
type TL_userContact struct {
id int32
first_name string
last_name string
username string
access_hash int64
phone string
photo TL // UserProfilePhoto
status TL // UserStatus
}
type TL_userRequest struct {
id int32
first_name string
last_name string
username string
access_hash int64
phone string
photo TL // UserProfilePhoto
status TL // UserStatus
}
type TL_userForeign struct {
id int32
first_name string
last_name string
username string
access_hash int64
photo TL // UserProfilePhoto
status TL // UserStatus
}
type TL_userDeleted struct {
id int32
first_name string
last_name string
username string
}
type TL_userProfilePhotoEmpty struct {
}
type TL_userProfilePhoto struct {
photo_id int64
photo_small TL // FileLocation
photo_big TL // FileLocation
}
type TL_userStatusEmpty struct {
}
type TL_userStatusOnline struct {
expires int32
}
type TL_userStatusOffline struct {
was_online int32
}
type TL_chatEmpty struct {
id int32
}
type TL_chat struct {
id int32
title string
photo TL // ChatPhoto
participants_count int32
date int32
left TL // Bool
version int32
}
type TL_chatForbidden struct {
id int32
title string
date int32
}
type TL_chatFull struct {
id int32
participants TL // ChatParticipants
chat_photo TL // Photo
notify_settings TL // PeerNotifySettings
}
type TL_chatParticipant struct {
user_id int32
inviter_id int32
date int32
}
type TL_chatParticipantsForbidden struct {
chat_id int32
}
type TL_chatParticipants struct {
chat_id int32
admin_id int32
participants []TL // ChatParticipant
version int32
}
type TL_chatPhotoEmpty struct {
}
type TL_chatPhoto struct {
photo_small TL // FileLocation
photo_big TL // FileLocation
}
type TL_messageEmpty struct {
id int32
}
type TL_message struct {
flags int32
id int32
from_id int32
to_id TL // Peer
date int32
message string
media TL // MessageMedia
}
type TL_messageForwarded struct {
flags int32
id int32
fwd_from_id int32
fwd_date int32
from_id int32
to_id TL // Peer
date int32
message string
media TL // MessageMedia
}
type TL_messageService struct {
flags int32
id int32
from_id int32
to_id TL // Peer
date int32
action TL // MessageAction
}
type TL_messageMediaEmpty struct {
}
type TL_messageMediaPhoto struct {
photo TL // Photo
}
type TL_messageMediaVideo struct {
video TL // Video
}
type TL_messageMediaGeo struct {
geo TL // GeoPoint
}
type TL_messageMediaContact struct {
phone_number string
first_name string
last_name string
user_id int32
}
type TL_messageMediaUnsupported struct {
bytes []byte
}
type TL_messageActionEmpty struct {
}
type TL_messageActionChatCreate struct {
title string
users []int32
}
type TL_messageActionChatEditTitle struct {
title string
}
type TL_messageActionChatEditPhoto struct {
photo TL // Photo
}
type TL_messageActionChatDeletePhoto struct {
}
type TL_messageActionChatAddUser struct {
user_id int32
}
type TL_messageActionChatDeleteUser struct {
user_id int32
}
type TL_dialog struct {
peer TL // Peer
top_message int32
unread_count int32
notify_settings TL // PeerNotifySettings
}
type TL_photoEmpty struct {
id int64
}
type TL_photo struct {
id int64
access_hash int64
user_id int32
date int32
caption string
geo TL // GeoPoint
sizes []TL // PhotoSize
}
type TL_photoSizeEmpty struct {
_type string
}
type TL_photoSize struct {
_type string
location TL // FileLocation
w int32
h int32
size int32
}
type TL_photoCachedSize struct {
_type string
location TL // FileLocation
w int32
h int32
bytes []byte
}
type TL_videoEmpty struct {
id int64
}
type TL_video struct {
id int64
access_hash int64
user_id int32
date int32
caption string
duration int32
mime_type string
size int32
thumb TL // PhotoSize
dc_id int32
w int32
h int32
}
type TL_geoPointEmpty struct {
}
type TL_geoPoint struct {
long float64
lat float64
}
type TL_auth_checkedPhone struct {
phone_registered TL // Bool
phone_invited TL // Bool
}
type TL_auth_sentCode struct {
phone_registered TL // Bool
phone_code_hash string
send_call_timeout int32
is_password TL // Bool
}
type TL_auth_authorization struct {
expires int32
user TL // User
}
type TL_auth_exportedAuthorization struct {
id int32
bytes []byte
}
type TL_inputNotifyPeer struct {
peer TL // InputPeer
}
type TL_inputNotifyUsers struct {
}
type TL_inputNotifyChats struct {
}
type TL_inputNotifyAll struct {
}
type TL_inputPeerNotifyEventsEmpty struct {
}
type TL_inputPeerNotifyEventsAll struct {
}
type TL_inputPeerNotifySettings struct {
mute_until int32
sound string
show_previews TL // Bool
events_mask int32
}
type TL_peerNotifyEventsEmpty struct {
}
type TL_peerNotifyEventsAll struct {
}
type TL_peerNotifySettingsEmpty struct {
}
type TL_peerNotifySettings struct {
mute_until int32
sound string
show_previews TL // Bool
events_mask int32
}
type TL_wallPaper struct {
id int32
title string
sizes []TL // PhotoSize
color int32
}
type TL_userFull struct {
user TL // User
link TL // contacts_Link
profile_photo TL // Photo
notify_settings TL // PeerNotifySettings
blocked TL // Bool
real_first_name string
real_last_name string
}