-
-
Notifications
You must be signed in to change notification settings - Fork 661
/
extracted.json
6914 lines (6914 loc) · 859 KB
/
extracted.json
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
{
"object_autoSaveSettings": "Media autosave settings",
"object_autoSaveSettings_param_photos_type_flags.0?true": "Whether photos should be autosaved to the gallery.",
"object_autoSaveSettings_param_videos_type_flags.1?true": "Whether videos should be autosaved to the gallery.",
"object_autoSaveSettings_param_video_max_size_type_flags.2?long": "If set, specifies a size limit for autosavable videos",
"object_secureValueTypePassportRegistration": "Internal registration [passport](https:\/\/core.telegram.org\/passport)",
"object_channelAdminLogEventActionChangePeerColor": "The [message accent color](https:\/\/core.telegram.org\/api\/colors) was changed",
"object_channelAdminLogEventActionChangePeerColor_param_prev_value_type_PeerColor": "Previous accent palette",
"object_channelAdminLogEventActionChangePeerColor_param_new_value_type_PeerColor": "New accent palette",
"object_pageBlockParagraph": "A paragraph",
"object_pageBlockParagraph_param_text_type_RichText": "Text",
"object_updates.state": "Updates state.",
"object_updates.state_param_pts_type_int": "Number of events occurred in a text box",
"object_updates.state_param_qts_type_int": "Position in a sequence of updates in secret chats. For further details refer to article [secret chats](https:\/\/core.telegram.org\/api\/end-to-end)",
"object_updates.state_param_date_type_int": "Date of condition",
"object_updates.state_param_seq_type_int": "Number of sent updates",
"object_updates.state_param_unread_count_type_int": "Number of unread messages",
"object_channelParticipantCreator": "Channel\/supergroup creator",
"object_channelParticipantCreator_param_user_id_type_long": "User ID",
"object_channelParticipantCreator_param_admin_rights_type_ChatAdminRights": "Creator admin rights",
"object_channelParticipantCreator_param_rank_type_flags.0?string": "The role (rank) of the group creator in the group: just an arbitrary string, `admin` by default",
"object_inputUserSelf": "Defines the current user.",
"object_inputMediaDice": "Send a [dice-based animated sticker](https:\/\/core.telegram.org\/api\/dice)",
"object_inputMediaDice_param_emoticon_type_string": "The emoji, for now \ud83c\udfc0, \ud83c\udfb2 and \ud83c\udfaf are supported",
"object_updateGroupInvitePrivacyForbidden": "0-N updates of this type may be returned only when invoking [messages.addChatUser](..\/methods\/messages.addChatUser.md), [channels.inviteToChannel](..\/methods\/channels.inviteToChannel.md) or [messages.createChat](..\/methods\/messages.createChat.md): it indicates we couldn't add a user to a chat because of their privacy settings; if required, an [invite link](https:\/\/core.telegram.org\/api\/invites) can be shared with the user, instead.",
"object_updateGroupInvitePrivacyForbidden_param_user_id_type_long": "ID of the user we couldn't add.",
"object_help.appUpdate": "An update is available for the application.",
"object_help.appUpdate_param_can_not_skip_type_flags.0?true": "Unskippable, the new info must be shown to the user (with a popup or something else)",
"object_help.appUpdate_param_id_type_int": "Update ID",
"object_help.appUpdate_param_version_type_string": "New version name",
"object_help.appUpdate_param_text_type_string": "Text description of the update",
"object_help.appUpdate_param_entities_type_Vector<MessageEntity>": "[Message entities for styled text](https:\/\/core.telegram.org\/api\/entities)",
"object_help.appUpdate_param_document_type_flags.1?Document": "Application binary",
"object_help.appUpdate_param_url_type_flags.2?string": "Application download URL",
"object_help.appUpdate_param_sticker_type_flags.3?Document": "Associated sticker",
"object_inputPeerUser": "Defines a user for further interaction.",
"object_inputPeerUser_param_user_id_type_long": "User identifier",
"object_inputPeerUser_param_access_hash_type_long": "**access\\_hash** value from the [user](..\/constructors\/user.md) constructor",
"object_textUnderline": "Underlined text",
"object_textUnderline_param_text_type_RichText": "Text",
"object_inputGroupCallStream": "Chunk of a livestream",
"object_inputGroupCallStream_param_call_type_InputGroupCall": "Livestream info",
"object_inputGroupCallStream_param_time_ms_type_long": "Timestamp in milliseconds",
"object_inputGroupCallStream_param_scale_type_int": "Specifies the duration of the video segment to fetch in milliseconds, by bitshifting `1000` to the right `scale` times: `duration_ms := 1000 >> scale`",
"object_inputGroupCallStream_param_video_channel_type_flags.0?int": "Selected video channel",
"object_inputGroupCallStream_param_video_quality_type_flags.0?int": "Selected video quality (0 = lowest, 1 = medium, 2 = best)",
"object_vector": "A universal vector constructor.",
"object_wallPaperNoFile": "Represents a [wallpaper](https:\/\/core.telegram.org\/api\/wallpapers) only based on colors\/gradients.",
"object_wallPaperNoFile_param_id_type_long": "Wallpaper ID",
"object_wallPaperNoFile_param_default_type_flags.1?true": "Whether this is the default wallpaper",
"object_wallPaperNoFile_param_dark_type_flags.4?true": "Whether this wallpaper should be used in dark mode.",
"object_wallPaperNoFile_param_settings_type_flags.2?WallPaperSettings": "Info on how to generate the wallpaper.",
"object_updateEditChannelMessage": "A message was edited in a [channel\/supergroup](https:\/\/core.telegram.org\/api\/channel)",
"object_updateEditChannelMessage_param_message_type_Message": "The new message",
"object_updateEditChannelMessage_param_pts_type_int": "[Event count after generation](https:\/\/core.telegram.org\/api\/updates)",
"object_updateEditChannelMessage_param_pts_count_type_int": "[Number of events that were generated](https:\/\/core.telegram.org\/api\/updates)",
"object_updateUserEmojiStatus": "The [emoji status](https:\/\/core.telegram.org\/api\/emoji-status) of a certain user has changed",
"object_updateUserEmojiStatus_param_user_id_type_long": "User ID",
"object_updateUserEmojiStatus_param_emoji_status_type_EmojiStatus": "New [emoji status](https:\/\/core.telegram.org\/api\/emoji-status)",
"object_sendMessageUploadAudioAction": "User is uploading a voice message.",
"object_sendMessageUploadAudioAction_param_progress_type_int": "Progress percentage",
"object_messageActionGroupCallScheduled": "A group call was scheduled",
"object_messageActionGroupCallScheduled_param_call_type_InputGroupCall": "The group call",
"object_messageActionGroupCallScheduled_param_schedule_date_type_int": "When is this group call scheduled to start",
"object_messages.stickers": "Found stickers",
"object_messages.stickers_param_hash_type_long": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_messages.stickers_param_stickers_type_Vector<Document>": "Stickers",
"object_updateBotInlineSend": "The result of an inline query that was chosen by a user and sent to their chat partner. Please see our documentation on the [feedback collecting](https:\/\/core.telegram.org\/bots\/inline#collecting-feedback) for details on how to enable these updates for your bot.",
"object_updateBotInlineSend_param_user_id_type_long": "The user that chose the result",
"object_updateBotInlineSend_param_query_type_string": "The query that was used to obtain the result",
"object_updateBotInlineSend_param_geo_type_flags.0?GeoPoint": "Optional. Sender location, only for bots that require user location",
"object_updateBotInlineSend_param_id_type_string": "The unique identifier for the result that was chosen",
"object_updateBotInlineSend_param_msg_id_type_flags.1?InputBotInlineMessageID": "Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. Will be also received in callback queries and can be used to edit the message.",
"object_pageCaption": "Page caption",
"object_pageCaption_param_text_type_RichText": "Caption",
"object_pageCaption_param_credit_type_RichText": "Credits",
"object_inlineQueryPeerTypeChat": "Peer type: [chat](https:\/\/core.telegram.org\/api\/channel)",
"object_messageEntityPre": "Message entity representing a preformatted `codeblock`, allowing the user to specify a programming language for the codeblock.",
"object_messageEntityPre_param_offset_type_int": "Offset of message entity within message (in [UTF-16 code units](https:\/\/core.telegram.org\/api\/entities#entity-length))",
"object_messageEntityPre_param_length_type_int": "Length of message entity within message (in [UTF-16 code units](https:\/\/core.telegram.org\/api\/entities#entity-length))",
"object_messageEntityPre_param_language_type_string": "Programming language of the code",
"object_chatInviteEmpty": "No info is associated to the chat invite",
"object_sponsoredWebPage": "Represents a sponsored website.",
"object_sponsoredWebPage_param_url_type_string": "Web page URL.",
"object_sponsoredWebPage_param_site_name_type_string": "Website name.",
"object_sponsoredWebPage_param_photo_type_flags.0?Photo": "Optional image preview.",
"object_messages.availableReactions": "Animations and metadata associated with [message reactions \u00bb](https:\/\/core.telegram.org\/api\/reactions)",
"object_messages.availableReactions_param_hash_type_int": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_messages.availableReactions_param_reactions_type_Vector<AvailableReaction>": "Animations and metadata associated with [message reactions \u00bb](https:\/\/core.telegram.org\/api\/reactions)",
"object_sendMessageChooseContactAction": "User is selecting a contact to share.",
"object_decryptedMessageActionScreenshotMessages": "A screenshot was taken.",
"object_decryptedMessageActionScreenshotMessages_param_random_ids_type_Vector<long>": "List of affected message ids (that appeared on the screenshot)",
"object_updateChatDefaultBannedRights": "Default banned rights in a [normal chat](https:\/\/core.telegram.org\/api\/channel) were updated",
"object_updateChatDefaultBannedRights_param_peer_type_Peer": "The chat",
"object_updateChatDefaultBannedRights_param_default_banned_rights_type_ChatBannedRights": "New default banned rights",
"object_updateChatDefaultBannedRights_param_version_type_int": "Version",
"object_botInlineMessageMediaAuto": "Send whatever media is attached to the [botInlineMediaResult](..\/constructors\/botInlineMediaResult.md)",
"object_botInlineMessageMediaAuto_param_invert_media_type_flags.3?true": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.",
"object_botInlineMessageMediaAuto_param_message_type_string": "Caption",
"object_botInlineMessageMediaAuto_param_entities_type_flags.1?Vector<MessageEntity>": "[Message entities for styled text](https:\/\/core.telegram.org\/api\/entities)",
"object_botInlineMessageMediaAuto_param_reply_markup_type_flags.2?ReplyMarkup": "Inline keyboard",
"object_storage.filePdf": "PDF document image. MIME type: `application\/pdf`.",
"object_updateChatParticipants": "Composition of chat participants changed.",
"object_updateChatParticipants_param_participants_type_ChatParticipants": "Updated chat participants",
"object_account.wallPapers": "Installed [wallpapers](https:\/\/core.telegram.org\/api\/wallpapers)",
"object_account.wallPapers_param_hash_type_long": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_account.wallPapers_param_wallpapers_type_Vector<WallPaper>": "[Wallpapers](https:\/\/core.telegram.org\/api\/wallpapers)",
"object_account.savedRingtonesNotModified": "The notification sound list hasn't changed.",
"object_cdnPublicKey": "Public key to use **only** during handshakes to [CDN](https:\/\/core.telegram.org\/cdn) DCs.",
"object_cdnPublicKey_param_dc_id_type_int": "[CDN DC](https:\/\/core.telegram.org\/cdn) ID",
"object_cdnPublicKey_param_public_key_type_string": "RSA public key",
"object_decryptedMessageActionNotifyLayer": "A notification stating the API layer that is used by the client. You should use your current layer and take notice of the layer used on the other side of a conversation when sending messages.",
"object_decryptedMessageActionNotifyLayer_param_layer_type_int": "Layer number, must be **17** or higher (this constructor was introduced in Layer 17.",
"object_inputBotInlineMessageText": "Simple text message",
"object_inputBotInlineMessageText_param_no_webpage_type_flags.0?true": "Disable webpage preview",
"object_inputBotInlineMessageText_param_invert_media_type_flags.3?true": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.",
"object_inputBotInlineMessageText_param_message_type_string": "Message",
"object_inputBotInlineMessageText_param_entities_type_flags.1?Vector<MessageEntity>": "[Message entities for styled text](https:\/\/core.telegram.org\/api\/entities)",
"object_inputBotInlineMessageText_param_reply_markup_type_flags.2?ReplyMarkup": "Inline keyboard",
"object_inputPhotoEmpty": "Empty constructor.",
"object_updateChannelTooLong": "There are new updates in the specified channel, the client must fetch them. \nIf the difference is too long or if the channel isn't currently in the states, start fetching from the specified pts.",
"object_updateChannelTooLong_param_channel_id_type_long": "The channel",
"object_updateChannelTooLong_param_pts_type_flags.0?int": "The [PTS](https:\/\/core.telegram.org\/api\/updates).",
"object_help.appConfig": "Contains various [client configuration parameters](https:\/\/core.telegram.org\/api\/config#client-configuration)",
"object_help.appConfig_param_hash_type_int": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_help.appConfig_param_config_type_JSONValue": "[Client configuration parameters](https:\/\/core.telegram.org\/api\/config#client-configuration)",
"object_globalPrivacySettings": "Global privacy settings",
"object_globalPrivacySettings_param_archive_and_mute_new_noncontact_peers_type_flags.0?true": "Whether to archive and mute new chats from non-contacts",
"object_globalPrivacySettings_param_keep_archived_unmuted_type_flags.1?true": "Whether unmuted chats will be kept in the Archive chat list when they get a new message.",
"object_globalPrivacySettings_param_keep_archived_folders_type_flags.2?true": "Whether unmuted chats that are always included or pinned in a [folder](https:\/\/core.telegram.org\/api\/folders), will be kept in the Archive chat list when they get a new message. Ignored if `keep_archived_unmuted` is set.",
"object_channelAdminLogEventActionExportedInviteRevoke": "A specific invite link was revoked",
"object_channelAdminLogEventActionExportedInviteRevoke_param_invite_type_ExportedChatInvite": "The invite link that was revoked",
"object_botMenuButtonDefault": "Placeholder [bot menu button](https:\/\/core.telegram.org\/api\/bots\/menu) never returned to users: see [the docs for more info](https:\/\/core.telegram.org\/api\/bots\/menu).",
"object_privacyValueDisallowContacts": "Disallow only contacts",
"object_updatePrivacy": "Privacy rules were changed",
"object_updatePrivacy_param_key_type_PrivacyKey": "Peers to which the privacy rules apply",
"object_updatePrivacy_param_rules_type_Vector<PrivacyRule>": "New privacy rules",
"object_keyboardButtonSwitchInline": "Button to force a user to switch to inline mode: pressing the button will prompt the user to select one of their chats, open that chat and insert the bot's username and the specified inline query in the input field.",
"object_keyboardButtonSwitchInline_param_same_peer_type_flags.0?true": "If set, pressing the button will insert the bot's username and the specified inline `query` in the current chat's input field.",
"object_keyboardButtonSwitchInline_param_text_type_string": "Button label",
"object_keyboardButtonSwitchInline_param_query_type_string": "The inline query to use",
"object_keyboardButtonSwitchInline_param_peer_types_type_flags.1?Vector<InlineQueryPeerType>": "Filter to use when selecting chats.",
"object_messageEntityUnknown": "Unknown message entity",
"object_messageEntityUnknown_param_offset_type_int": "Offset of message entity within message (in [UTF-16 code units](https:\/\/core.telegram.org\/api\/entities#entity-length))",
"object_messageEntityUnknown_param_length_type_int": "Length of message entity within message (in [UTF-16 code units](https:\/\/core.telegram.org\/api\/entities#entity-length))",
"object_channelAdminLogEventActionToggleSignatures": "Channel signatures were enabled\/disabled",
"object_channelAdminLogEventActionToggleSignatures_param_new_value_type_Bool": "New value",
"object_help.termsOfServiceUpdateEmpty": "No changes were made to telegram's terms of service",
"object_help.termsOfServiceUpdateEmpty_param_expires_type_int": "New TOS updates will have to be queried using [help.getTermsOfServiceUpdate](..\/methods\/help.getTermsOfServiceUpdate.md) in `expires` seconds",
"object_updatesTooLong": "Too many updates, it is necessary to execute [updates.getDifference](..\/methods\/updates.getDifference.md).",
"object_updateUserName": "Changes the user's first name, last name and username.",
"object_updateUserName_param_user_id_type_long": "User identifier",
"object_updateUserName_param_first_name_type_string": "New first name. Corresponds to the new value of **real\\_first\\_name** field of the [userFull](..\/constructors\/userFull.md) constructor.",
"object_updateUserName_param_last_name_type_string": "New last name. Corresponds to the new value of **real\\_last\\_name** field of the [userFull](..\/constructors\/userFull.md) constructor.",
"object_updateUserName_param_usernames_type_Vector<Username>": "Usernames.",
"object_updateChannelReadMessagesContents": "The specified [channel\/supergroup](https:\/\/core.telegram.org\/api\/channel) messages were read",
"object_updateChannelReadMessagesContents_param_channel_id_type_long": "[Channel\/supergroup](https:\/\/core.telegram.org\/api\/channel) ID",
"object_updateChannelReadMessagesContents_param_top_msg_id_type_flags.0?int": "[Forum topic ID](https:\/\/core.telegram.org\/api\/forum#forum-topics).",
"object_updateChannelReadMessagesContents_param_messages_type_Vector<int>": "IDs of messages that were read",
"object_keyboardButtonRequestPhone": "Button to request a user's phone number",
"object_keyboardButtonRequestPhone_param_text_type_string": "Button text",
"object_messages.translateResult": "Translated text with [entities](https:\/\/core.telegram.org\/api\/entities)",
"object_messages.translateResult_param_result_type_Vector<TextWithEntities>": "Text+[entities](https:\/\/core.telegram.org\/api\/entities), for each input message.",
"object_inputStickerSetDice": "Used for fetching [animated dice stickers](https:\/\/core.telegram.org\/api\/dice)",
"object_inputStickerSetDice_param_emoticon_type_string": "The emoji, for now \ud83c\udfc0, \ud83c\udfb2 and \ud83c\udfaf are supported",
"object_auth.codeTypeFragmentSms": "The next time, the authentication code will be delivered via [fragment.com](https:\/\/fragment.com)",
"object_emailVerificationCode": "Email verification code",
"object_emailVerificationCode_param_code_type_string": "Received verification code",
"object_messages.dhConfig": "New set of configuring parameters.",
"object_messages.dhConfig_param_g_type_int": "New value **prime**, see [Wikipedia](https:\/\/en.wikipedia.org\/wiki\/Diffie%E2%80%93Hellman_key_exchange)",
"object_messages.dhConfig_param_p_type_bytes": "New value **primitive root**, see [Wikipedia](https:\/\/en.wikipedia.org\/wiki\/Diffie%E2%80%93Hellman_key_exchange)",
"object_messages.dhConfig_param_version_type_int": "Version of set of parameters",
"object_messages.dhConfig_param_random_type_bytes": "Random sequence of bytes of assigned length",
"object_themeSettings": "Theme settings",
"object_themeSettings_param_message_colors_animated_type_flags.2?true": "If set, the freeform gradient fill needs to be animated on every sent message.",
"object_themeSettings_param_base_theme_type_BaseTheme": "Base theme",
"object_themeSettings_param_accent_color_type_int": "Accent color, ARGB format",
"object_themeSettings_param_outbox_accent_color_type_flags.3?int": "Accent color of outgoing messages in ARGB format",
"object_themeSettings_param_message_colors_type_flags.0?Vector<int>": "The fill to be used as a background for outgoing messages, in RGB24 format. <br>If just one or two equal colors are provided, describes a solid fill of a background. <br>If two different colors are provided, describes the top and bottom colors of a 0-degree gradient.<br>If three or four colors are provided, describes a freeform gradient fill of a background.",
"object_themeSettings_param_wallpaper_type_flags.1?WallPaper": "[Wallpaper](https:\/\/core.telegram.org\/api\/wallpapers)",
"object_jsonString": "JSON string",
"object_jsonString_param_value_type_string": "Value",
"object_inputMessagesFilterPinned": "Fetch only pinned messages",
"object_inputBotInlineMessageMediaGeo": "Geolocation",
"object_inputBotInlineMessageMediaGeo_param_geo_point_type_InputGeoPoint": "Geolocation",
"object_inputBotInlineMessageMediaGeo_param_heading_type_flags.0?int": "For [live locations](https:\/\/core.telegram.org\/api\/live-location), a direction in which the location moves, in degrees; 1-360",
"object_inputBotInlineMessageMediaGeo_param_period_type_flags.1?int": "Validity period",
"object_inputBotInlineMessageMediaGeo_param_proximity_notification_radius_type_flags.3?int": "For [live locations](https:\/\/core.telegram.org\/api\/live-location), a maximum distance to another chat member for proximity alerts, in meters (0-100000)",
"object_inputBotInlineMessageMediaGeo_param_reply_markup_type_flags.2?ReplyMarkup": "Reply markup for bot\/inline keyboards",
"object_help.termsOfService": "Info about the latest telegram Terms Of Service",
"object_help.termsOfService_param_popup_type_flags.0?true": "Whether a prompt must be showed to the user, in order to accept the new terms.",
"object_help.termsOfService_param_id_type_DataJSON": "ID of the new terms",
"object_help.termsOfService_param_text_type_string": "Text of the new terms",
"object_help.termsOfService_param_entities_type_Vector<MessageEntity>": "[Message entities for styled text](https:\/\/core.telegram.org\/api\/entities)",
"object_help.termsOfService_param_min_age_confirm_type_flags.1?int": "Minimum age required to sign up to telegram, the user must confirm that they is older than the minimum age.",
"object_pageBlockFooter": "Page footer",
"object_pageBlockFooter_param_text_type_RichText": "Contents",
"object_contactBlocked": "A blocked user.",
"object_contactBlocked_param_user_id_type_int": "User identifier",
"object_contactBlocked_param_date_type_int": "Date blacklisted",
"object_storage.fileGif": "GIF image. MIME type: `image\/gif`.",
"object_messageMediaGeo": "Attached map.",
"object_messageMediaGeo_param_geo_type_GeoPoint": "GeoPoint",
"object_secureValueErrorData": "Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.",
"object_secureValueErrorData_param_type_type_SecureValueType": "The section of the user's Telegram Passport which has the error, one of [secureValueTypePersonalDetails](..\/constructors\/secureValueTypePersonalDetails.md), [secureValueTypePassport](..\/constructors\/secureValueTypePassport.md), [secureValueTypeDriverLicense](..\/constructors\/secureValueTypeDriverLicense.md), [secureValueTypeIdentityCard](..\/constructors\/secureValueTypeIdentityCard.md), [secureValueTypeInternalPassport](..\/constructors\/secureValueTypeInternalPassport.md), [secureValueTypeAddress](..\/constructors\/secureValueTypeAddress.md)",
"object_secureValueErrorData_param_data_hash_type_bytes": "Data hash",
"object_secureValueErrorData_param_field_type_string": "Name of the data field which has the error",
"object_secureValueErrorData_param_text_type_string": "Error message",
"object_popularContact": "Popular contact",
"object_popularContact_param_client_id_type_long": "Contact identifier",
"object_popularContact_param_importers_type_int": "How many people imported this contact",
"object_help.passportConfig": "Telegram [passport](https:\/\/core.telegram.org\/passport) configuration",
"object_help.passportConfig_param_hash_type_int": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_help.passportConfig_param_countries_langs_type_DataJSON": "Localization",
"object_statsGroupTopPoster": "Information about an active user in a supergroup",
"object_statsGroupTopPoster_param_user_id_type_long": "User ID",
"object_statsGroupTopPoster_param_messages_type_int": "Number of messages for [statistics](https:\/\/core.telegram.org\/api\/stats) period in consideration",
"object_statsGroupTopPoster_param_avg_chars_type_int": "Average number of characters per message",
"object_inputStickerSetEmojiDefaultStatuses": "Default [custom emoji status](https:\/\/core.telegram.org\/api\/emoji-status) stickerset",
"object_attachMenuBotIconColor": "Represents an attachment menu icon color for [bot mini apps \u00bb](https:\/\/core.telegram.org\/api\/bots\/attach)",
"object_attachMenuBotIconColor_param_name_type_string": "One of the following values: <br>`light_icon` \\- Color of the attachment menu icon (light mode) <br>`light_text` \\- Color of the attachment menu label, once selected (light mode) <br>`dark_icon` \\- Color of the attachment menu icon (dark mode) <br>`dark_text` \\- Color of the attachment menu label, once selected (dark mode)",
"object_attachMenuBotIconColor_param_color_type_int": "Color in RGB24 format",
"object_storyReactionPublicForward": "A certain peer has forwarded the story as a message to a public chat or channel.",
"object_storyReactionPublicForward_param_message_type_Message": "The message with the forwarded story.",
"object_messages.translateResultText": "Translated text",
"object_messages.translateResultText_param_text_type_string": "Translated text",
"object_securePlainEmail": "Email address to use in [telegram passport](https:\/\/core.telegram.org\/passport): [it must be verified, first \u00bb](https:\/\/core.telegram.org\/passport\/encryption#secureplaindata).",
"object_securePlainEmail_param_email_type_string": "Email address",
"object_channelAdminLogEventActionCreateTopic": "A [forum topic](https:\/\/core.telegram.org\/api\/forum#forum-topics) was created",
"object_channelAdminLogEventActionCreateTopic_param_topic_type_ForumTopic": "The [forum topic](https:\/\/core.telegram.org\/api\/forum#forum-topics) that was created",
"object_updateAutoSaveSettings": "Media autosave settings have changed and must be refetched using [account.getAutoSaveSettings](..\/methods\/account.getAutoSaveSettings.md).",
"object_messageMediaGiveawayResults": "A [giveaway](https:\/\/core.telegram.org\/api\/giveaways) with public winners has finished, this constructor contains info about the winners.",
"object_messageMediaGiveawayResults_param_only_new_subscribers_type_flags.0?true": "If set, only new subscribers starting from the giveaway creation date participated in the giveaway.",
"object_messageMediaGiveawayResults_param_refunded_type_flags.2?true": "If set, the giveaway was canceled and was fully refunded.",
"object_messageMediaGiveawayResults_param_channel_id_type_long": "ID of the channel that was automatically [boosted](https:\/\/core.telegram.org\/api\/boost) by the winners of the giveaway for duration of the Premium subscription.",
"object_messageMediaGiveawayResults_param_additional_peers_count_type_flags.3?int": "Number of other channels that participated in the giveaway.",
"object_messageMediaGiveawayResults_param_launch_msg_id_type_int": "Identifier of the message with the giveaway in `channel_id`.",
"object_messageMediaGiveawayResults_param_winners_count_type_int": "Total number of winners in the giveaway.",
"object_messageMediaGiveawayResults_param_unclaimed_count_type_int": "Number of not-yet-claimed prizes.",
"object_messageMediaGiveawayResults_param_winners_type_Vector<long>": "Up to 100 user identifiers of the winners of the giveaway.",
"object_messageMediaGiveawayResults_param_months_type_int": "Duration in months of each [Telegram Premium](https:\/\/core.telegram.org\/api\/premium) subscription in the giveaway.",
"object_messageMediaGiveawayResults_param_prize_description_type_flags.1?string": "Can contain a textual description of additional giveaway prizes.",
"object_messageMediaGiveawayResults_param_until_date_type_int": "Point in time (Unix timestamp) when the winners were selected. May be bigger than winners selection date specified in initial parameters of the giveaway.",
"object_messageUserReaction": "Message reaction",
"object_messageUserReaction_param_user_id_type_int": "ID of user that reacted this way",
"object_messageUserReaction_param_reaction_type_string": "Reaction (UTF8 emoji)",
"object_inputChannelEmpty": "Represents the absence of a channel",
"object_messageActionChatDeletePhoto": "Group profile photo removed.",
"object_channelAdminLogEventActionChangeStickerSet": "The supergroup's stickerset was changed",
"object_channelAdminLogEventActionChangeStickerSet_param_prev_stickerset_type_InputStickerSet": "Previous stickerset",
"object_channelAdminLogEventActionChangeStickerSet_param_new_stickerset_type_InputStickerSet": "New stickerset",
"object_updateBotInlineQuery": "An incoming inline query",
"object_updateBotInlineQuery_param_query_id_type_long": "Query ID",
"object_updateBotInlineQuery_param_user_id_type_long": "User that sent the query",
"object_updateBotInlineQuery_param_query_type_string": "Text of query",
"object_updateBotInlineQuery_param_geo_type_flags.0?GeoPoint": "Attached geolocation",
"object_updateBotInlineQuery_param_peer_type_type_flags.1?InlineQueryPeerType": "Type of the chat from which the inline query was sent.",
"object_updateBotInlineQuery_param_offset_type_string": "Offset to navigate through results",
"object_secureValueTypeDriverLicense": "Driver's license",
"object_account.authorizationForm": "[Telegram Passport](https:\/\/core.telegram.org\/passport) authorization form",
"object_account.authorizationForm_param_required_types_type_Vector<SecureRequiredType>": "Required [Telegram Passport](https:\/\/core.telegram.org\/passport) documents",
"object_account.authorizationForm_param_values_type_Vector<SecureValue>": "Already submitted [Telegram Passport](https:\/\/core.telegram.org\/passport) documents",
"object_account.authorizationForm_param_errors_type_Vector<SecureValueError>": "[Telegram Passport](https:\/\/core.telegram.org\/passport) errors",
"object_account.authorizationForm_param_users_type_Vector<User>": "Info about the bot to which the form will be submitted",
"object_account.authorizationForm_param_privacy_policy_url_type_flags.0?string": "URL of the service's privacy policy",
"object_inputDialogPeer": "A peer",
"object_inputDialogPeer_param_peer_type_InputPeer": "Peer",
"object_webDocumentNoProxy": "Remote document that can be downloaded without [proxying through telegram](https:\/\/core.telegram.org\/api\/files)",
"object_webDocumentNoProxy_param_url_type_string": "Document URL",
"object_webDocumentNoProxy_param_size_type_int": "File size",
"object_webDocumentNoProxy_param_mime_type_type_string": "MIME type",
"object_webDocumentNoProxy_param_attributes_type_Vector<DocumentAttribute>": "Attributes for media types",
"object_privacyValueDisallowAll": "Disallow all users",
"object_stats.broadcastStats": "[Channel statistics](https:\/\/core.telegram.org\/api\/stats).",
"object_stats.broadcastStats_param_period_type_StatsDateRangeDays": "Period in consideration",
"object_stats.broadcastStats_param_followers_type_StatsAbsValueAndPrev": "Follower count change for period in consideration",
"object_stats.broadcastStats_param_views_per_post_type_StatsAbsValueAndPrev": "`total_viewcount\/postcount`, for posts posted during the period in consideration. <br>Note that in this case, `current` refers to the `period` in consideration (`min_date` till `max_date`), and `prev` refers to the previous period (`(min_date - (max_date - min_date))` till `min_date`).",
"object_stats.broadcastStats_param_shares_per_post_type_StatsAbsValueAndPrev": "`total_sharecount\/postcount`, for posts posted during the period in consideration. <br>Note that in this case, `current` refers to the `period` in consideration (`min_date` till `max_date`), and `prev` refers to the previous period (`(min_date - (max_date - min_date))` till `min_date`)",
"object_stats.broadcastStats_param_reactions_per_post_type_StatsAbsValueAndPrev": "`total_reactions\/postcount`, for posts posted during the period in consideration. <br>Note that in this case, `current` refers to the `period` in consideration (`min_date` till `max_date`), and `prev` refers to the previous period (`(min_date - (max_date - min_date))` till `min_date`)",
"object_stats.broadcastStats_param_views_per_story_type_StatsAbsValueAndPrev": "`total_views\/storycount`, for posts posted during the period in consideration. <br>Note that in this case, `current` refers to the `period` in consideration (`min_date` till `max_date`), and `prev` refers to the previous period (`(min_date - (max_date - min_date))` till `min_date`)",
"object_stats.broadcastStats_param_shares_per_story_type_StatsAbsValueAndPrev": "`total_shares\/storycount`, for posts posted during the period in consideration. <br>Note that in this case, `current` refers to the `period` in consideration (`min_date` till `max_date`), and `prev` refers to the previous period (`(min_date - (max_date - min_date))` till `min_date`)",
"object_stats.broadcastStats_param_reactions_per_story_type_StatsAbsValueAndPrev": "`total_reactions\/storycount`, for posts posted during the period in consideration. <br>Note that in this case, `current` refers to the `period` in consideration (`min_date` till `max_date`), and `prev` refers to the previous period (`(min_date - (max_date - min_date))` till `min_date`)",
"object_stats.broadcastStats_param_enabled_notifications_type_StatsPercentValue": "Percentage of subscribers with enabled notifications",
"object_stats.broadcastStats_param_growth_graph_type_StatsGraph": "Channel growth graph (absolute subscriber count)",
"object_stats.broadcastStats_param_followers_graph_type_StatsGraph": "Followers growth graph (relative subscriber count)",
"object_stats.broadcastStats_param_mute_graph_type_StatsGraph": "Muted users graph (relative)",
"object_stats.broadcastStats_param_top_hours_graph_type_StatsGraph": "Views per hour graph (absolute)",
"object_stats.broadcastStats_param_interactions_graph_type_StatsGraph": "Interactions graph (absolute)",
"object_stats.broadcastStats_param_iv_interactions_graph_type_StatsGraph": "IV interactions graph (absolute)",
"object_stats.broadcastStats_param_views_by_source_graph_type_StatsGraph": "Views by source graph (absolute)",
"object_stats.broadcastStats_param_new_followers_by_source_graph_type_StatsGraph": "New followers by source graph (absolute)",
"object_stats.broadcastStats_param_languages_graph_type_StatsGraph": "Subscriber language graph (pie chart)",
"object_stats.broadcastStats_param_reactions_by_emotion_graph_type_StatsGraph": "A graph containing the number of reactions on posts categorized by emotion",
"object_stats.broadcastStats_param_story_interactions_graph_type_StatsGraph": "A graph containing the number of story views and shares",
"object_stats.broadcastStats_param_story_reactions_by_emotion_graph_type_StatsGraph": "A graph containing the number of reactions on stories categorized by emotion",
"object_stats.broadcastStats_param_recent_posts_interactions_type_Vector<PostInteractionCounters>": "Detailed statistics about number of views and shares of recently sent messages and stories",
"object_messages.favedStickers": "Favorited stickers",
"object_messages.favedStickers_param_hash_type_long": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_messages.favedStickers_param_packs_type_Vector<StickerPack>": "Emojis associated to stickers",
"object_messages.favedStickers_param_stickers_type_Vector<Document>": "Favorited stickers",
"object_notifyUsers": "Notifications generated by all users.",
"object_storage.fileMov": "Quicktime video. MIME type: `video\/quicktime`.",
"object_updateGeoLiveViewed": "Live geoposition message was viewed",
"object_updateGeoLiveViewed_param_peer_type_Peer": "The user that viewed the live geoposition",
"object_updateGeoLiveViewed_param_msg_id_type_int": "Message ID of geoposition message",
"object_topPeerCategoryPhoneCalls": "Most frequently called users",
"object_messageActionGeoProximityReached": "A user of the chat is now in proximity of another user",
"object_messageActionGeoProximityReached_param_from_id_type_Peer": "The user or chat that is now in proximity of `to_id`",
"object_messageActionGeoProximityReached_param_to_id_type_Peer": "The user or chat that subscribed to [live geolocation proximity alerts](https:\/\/core.telegram.org\/api\/live-location#proximity-alert)",
"object_messageActionGeoProximityReached_param_distance_type_int": "Distance, in meters (0-100000)",
"object_bankCardOpenUrl": "Credit card info URL provided by the bank",
"object_bankCardOpenUrl_param_url_type_string": "Info URL",
"object_bankCardOpenUrl_param_name_type_string": "Bank name",
"object_updateShort": "Shortened constructor containing info on one update not requiring auxiliary data",
"object_updateShort_param_update_type_Update": "Update",
"object_updateShort_param_date_type_int": "Date of event",
"object_pageBlockHeader": "Page header",
"object_pageBlockHeader_param_text_type_RichText": "Contents",
"object_emojiLanguage": "Emoji language",
"object_emojiLanguage_param_lang_code_type_string": "Language code",
"object_chatlists.exportedChatlistInvite": "Info about an exported [chat folder deep link \u00bb](https:\/\/core.telegram.org\/api\/links#chat-folder-links).",
"object_chatlists.exportedChatlistInvite_param_filter_type_DialogFilter": "Folder ID",
"object_chatlists.exportedChatlistInvite_param_invite_type_ExportedChatlistInvite": "The exported [chat folder deep link \u00bb](https:\/\/core.telegram.org\/api\/links#chat-folder-links).",
"object_updateChannelMessageViews": "The view counter of a message in a channel has changed",
"object_updateChannelMessageViews_param_channel_id_type_long": "Channel ID",
"object_updateChannelMessageViews_param_id_type_int": "ID of the message",
"object_updateChannelMessageViews_param_views_type_int": "New view counter",
"object_webPageAttributeTheme": "Page theme",
"object_webPageAttributeTheme_param_documents_type_flags.0?Vector<Document>": "Theme files",
"object_webPageAttributeTheme_param_settings_type_flags.1?ThemeSettings": "Theme settings",
"object_updateBotCallbackQuery": "A callback button was pressed, and the button data was sent to the bot that created the button",
"object_updateBotCallbackQuery_param_query_id_type_long": "Query ID",
"object_updateBotCallbackQuery_param_user_id_type_long": "ID of the user that pressed the button",
"object_updateBotCallbackQuery_param_peer_type_Peer": "Chat where the inline keyboard was sent",
"object_updateBotCallbackQuery_param_msg_id_type_int": "Message ID",
"object_updateBotCallbackQuery_param_chat_instance_type_long": "Global identifier, uniquely corresponding to the chat to which the message with the callback button was sent. Useful for high scores in games.",
"object_updateBotCallbackQuery_param_data_type_flags.0?bytes": "Callback data",
"object_updateBotCallbackQuery_param_game_short_name_type_flags.1?string": "Short name of a Game to be returned, serves as the unique identifier for the game",
"object_pageBlockPhoto": "A photo",
"object_pageBlockPhoto_param_photo_id_type_long": "Photo ID",
"object_pageBlockPhoto_param_caption_type_PageCaption": "Caption",
"object_pageBlockPhoto_param_url_type_flags.0?string": "HTTP URL of page the photo leads to when clicked",
"object_pageBlockPhoto_param_webpage_id_type_flags.0?long": "ID of preview of the page the photo leads to when clicked",
"object_stories.storyReactionsList": "List of peers that reacted to or intercated with a specific [story](https:\/\/core.telegram.org\/api\/stories)",
"object_stories.storyReactionsList_param_count_type_int": "Total number of reactions matching query",
"object_stories.storyReactionsList_param_reactions_type_Vector<StoryReaction>": "List of peers that reacted to or interacted with a specific story",
"object_stories.storyReactionsList_param_chats_type_Vector<Chat>": "Mentioned chats",
"object_stories.storyReactionsList_param_users_type_Vector<User>": "Mentioned users",
"object_stories.storyReactionsList_param_next_offset_type_flags.0?string": "If set, indicates the next offset to use to load more results by invoking [stories.getStoryReactionsList](..\/methods\/stories.getStoryReactionsList.md).",
"object_chatAdminWithInvites": "Info about chat invites generated by admins.",
"object_chatAdminWithInvites_param_admin_id_type_long": "The admin",
"object_chatAdminWithInvites_param_invites_count_type_int": "Number of invites generated by the admin",
"object_chatAdminWithInvites_param_revoked_invites_count_type_int": "Number of revoked invites",
"object_auth.loginTokenMigrateTo": "Repeat the query to the specified DC",
"object_auth.loginTokenMigrateTo_param_dc_id_type_int": "DC ID",
"object_auth.loginTokenMigrateTo_param_token_type_bytes": "Token to use for login",
"object_encryptedChatDiscarded": "Discarded or deleted chat.",
"object_encryptedChatDiscarded_param_history_deleted_type_flags.0?true": "Whether both users of this secret chat should also remove all of its messages",
"object_encryptedChatDiscarded_param_id_type_int": "Chat ID",
"object_geoPointEmpty": "Empty constructor.",
"object_account.wallPapersNotModified": "No new [wallpapers](https:\/\/core.telegram.org\/api\/wallpapers) were found",
"object_decryptedMessageActionRequestKey": "Request rekeying, see [rekeying process](https:\/\/core.telegram.org\/api\/end-to-end\/pfs)",
"object_decryptedMessageActionRequestKey_param_exchange_id_type_long": "Exchange ID",
"object_decryptedMessageActionRequestKey_param_g_a_type_bytes": "g\\_a, see [rekeying process](https:\/\/core.telegram.org\/api\/end-to-end\/pfs)",
"object_updateReadChannelDiscussionOutbox": "Outgoing comments in a [discussion thread](https:\/\/core.telegram.org\/api\/threads) were marked as read",
"object_updateReadChannelDiscussionOutbox_param_channel_id_type_long": "[Supergroup ID](https:\/\/core.telegram.org\/api\/channel)",
"object_updateReadChannelDiscussionOutbox_param_top_msg_id_type_int": "ID of the group message that started the [thread](https:\/\/core.telegram.org\/api\/threads)",
"object_updateReadChannelDiscussionOutbox_param_read_max_id_type_int": "Message ID of latest read outgoing message for this [thread](https:\/\/core.telegram.org\/api\/threads)",
"object_channelMessagesFilterEmpty": "No filter",
"object_chatParticipantAdmin": "Chat admin",
"object_chatParticipantAdmin_param_user_id_type_long": "ID of a group member that is admin",
"object_chatParticipantAdmin_param_inviter_id_type_long": "ID of the user that added the member to the group",
"object_chatParticipantAdmin_param_date_type_int": "Date when the user was added",
"object_decryptedMessageMediaAudio": "Audio file attached to a secret chat message.",
"object_decryptedMessageMediaAudio_param_duration_type_int": "Audio duration in seconds",
"object_decryptedMessageMediaAudio_param_mime_type_type_string": "MIME-type of the audio file<br>Parameter added in Layer 13.",
"object_decryptedMessageMediaAudio_param_size_type_int": "File size",
"object_decryptedMessageMediaAudio_param_key_type_bytes": "Key to decrypt the attached media file",
"object_decryptedMessageMediaAudio_param_iv_type_bytes": "Initialization vector",
"object_botInlineMessageMediaInvoice": "Send an invoice",
"object_botInlineMessageMediaInvoice_param_shipping_address_requested_type_flags.1?true": "Set this flag if you require the user's shipping address to complete the order",
"object_botInlineMessageMediaInvoice_param_test_type_flags.3?true": "Test invoice",
"object_botInlineMessageMediaInvoice_param_title_type_string": "Product name, 1-32 characters",
"object_botInlineMessageMediaInvoice_param_description_type_string": "Product description, 1-255 characters",
"object_botInlineMessageMediaInvoice_param_photo_type_flags.0?WebDocument": "Product photo",
"object_botInlineMessageMediaInvoice_param_currency_type_string": "Three-letter ISO 4217 [currency](https:\/\/core.telegram.org\/bots\/payments#supported-currencies) code",
"object_botInlineMessageMediaInvoice_param_total_amount_type_long": "Total price in the smallest units of the currency (integer, not float\/double). For example, for a price of `US$ 1.45` pass `amount = 145`. See the exp parameter in [currencies.json](https:\/\/core.telegram.org\/bots\/payments\/currencies.json), it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).",
"object_botInlineMessageMediaInvoice_param_reply_markup_type_flags.2?ReplyMarkup": "Inline keyboard",
"object_inputEncryptedFile": "Sets forwarded encrypted file for attachment.",
"object_inputEncryptedFile_param_id_type_long": "File ID, value of **id** parameter from [encryptedFile](..\/constructors\/encryptedFile.md)",
"object_inputEncryptedFile_param_access_hash_type_long": "Checking sum, value of **access\\_hash** parameter from [encryptedFile](..\/constructors\/encryptedFile.md)",
"object_updates.channelDifference": "The new updates",
"object_updates.channelDifference_param_final_type_flags.0?true": "Whether there are more updates to be fetched using getDifference, starting from the provided `pts`",
"object_updates.channelDifference_param_pts_type_int": "The [PTS](https:\/\/core.telegram.org\/api\/updates) from which to start getting updates the next time",
"object_updates.channelDifference_param_timeout_type_flags.1?int": "Clients are supposed to refetch the channel difference after timeout seconds have elapsed",
"object_updates.channelDifference_param_new_messages_type_Vector<Message>": "New messages",
"object_updates.channelDifference_param_other_updates_type_Vector<Update>": "Other updates",
"object_updates.channelDifference_param_chats_type_Vector<Chat>": "Chats",
"object_updates.channelDifference_param_users_type_Vector<User>": "Users",
"object_inputNotifyBroadcasts": "All [channels](https:\/\/core.telegram.org\/api\/channel)",
"object_updateChatParticipantAdmin": "Admin permissions of a user in a [basic group](https:\/\/core.telegram.org\/api\/channel#basic-groups) were changed",
"object_updateChatParticipantAdmin_param_chat_id_type_long": "Chat ID",
"object_updateChatParticipantAdmin_param_user_id_type_long": "ID of the (de)admined user",
"object_updateChatParticipantAdmin_param_is_admin_type_Bool": "Whether the user was rendered admin",
"object_updateChatParticipantAdmin_param_version_type_int": "Used in basic groups to reorder updates and make sure that all of them was received.",
"object_pageBlockPullquote": "Pullquote",
"object_pageBlockPullquote_param_text_type_RichText": "Text",
"object_pageBlockPullquote_param_caption_type_RichText": "Caption",
"object_dialog": "Chat",
"object_dialog_param_pinned_type_flags.2?true": "Is the dialog pinned",
"object_dialog_param_unread_mark_type_flags.3?true": "Whether the chat was manually marked as unread",
"object_dialog_param_view_forum_as_messages_type_flags.6?true": "Users may also choose to display messages from all topics of a [forum](https:\/\/core.telegram.org\/api\/forum) as if they were sent to a normal group, using a \"View as messages\" setting in the local client. <br>This setting only affects the current account, and is synced to other logged in sessions using the [channels.toggleViewForumAsMessages](..\/methods\/channels.toggleViewForumAsMessages.md) method; invoking this method will update the value of this flag.",
"object_dialog_param_peer_type_Peer": "The chat",
"object_dialog_param_top_message_type_int": "The latest message ID",
"object_dialog_param_read_inbox_max_id_type_int": "Position up to which all incoming messages are read.",
"object_dialog_param_read_outbox_max_id_type_int": "Position up to which all outgoing messages are read.",
"object_dialog_param_unread_count_type_int": "Number of unread messages",
"object_dialog_param_unread_mentions_count_type_int": "Number of [unread mentions](https:\/\/core.telegram.org\/api\/mentions)",
"object_dialog_param_unread_reactions_count_type_int": "Number of unread reactions to messages you sent",
"object_dialog_param_notify_settings_type_PeerNotifySettings": "Notification settings",
"object_dialog_param_pts_type_flags.0?int": "[PTS](https:\/\/core.telegram.org\/api\/updates)",
"object_dialog_param_draft_type_flags.1?DraftMessage": "Message [draft](https:\/\/core.telegram.org\/api\/drafts)",
"object_dialog_param_folder_id_type_flags.4?int": "[Peer folder ID, for more info click here](https:\/\/core.telegram.org\/api\/folders#peer-folders)",
"object_dialog_param_ttl_period_type_flags.5?int": "Time-to-live of all messages sent in this dialog",
"object_botInlineMessageText": "Send a simple text message",
"object_botInlineMessageText_param_no_webpage_type_flags.0?true": "Disable webpage preview",
"object_botInlineMessageText_param_invert_media_type_flags.3?true": "If set, any eventual webpage preview will be shown on top of the message instead of at the bottom.",
"object_botInlineMessageText_param_message_type_string": "The message",
"object_botInlineMessageText_param_entities_type_flags.1?Vector<MessageEntity>": "[Message entities for styled text](https:\/\/core.telegram.org\/api\/entities)",
"object_botInlineMessageText_param_reply_markup_type_flags.2?ReplyMarkup": "Inline keyboard",
"object_topPeerCategoryForwardChats": "Chats to which the users often forwards messages to",
"object_postInteractionCountersMessage": "Interaction counters for a message.",
"object_postInteractionCountersMessage_param_msg_id_type_int": "Message ID",
"object_postInteractionCountersMessage_param_views_type_int": "Number of views",
"object_postInteractionCountersMessage_param_forwards_type_int": "Number of forwards to public channels",
"object_postInteractionCountersMessage_param_reactions_type_int": "Number of reactions",
"object_textWithEntities": "Styled text with [message entities](https:\/\/core.telegram.org\/api\/entities)",
"object_textWithEntities_param_text_type_string": "Text",
"object_textWithEntities_param_entities_type_Vector<MessageEntity>": "[Message entities for styled text](https:\/\/core.telegram.org\/api\/entities)",
"object_cdnConfig": "Configuration for [CDN](https:\/\/core.telegram.org\/cdn) file downloads.",
"object_cdnConfig_param_public_keys_type_Vector<CdnPublicKey>": "Vector of public keys to use **only** during handshakes to [CDN](https:\/\/core.telegram.org\/cdn) DCs.",
"object_inputMessagesFilterMyMentions": "Return only messages where the current user was [mentioned](https:\/\/core.telegram.org\/api\/mentions).",
"object_messageActionGiftCode": "Contains a [Telegram Premium giftcode link](https:\/\/core.telegram.org\/api\/links#premium-giftcode-links).",
"object_messageActionGiftCode_param_via_giveaway_type_flags.0?true": "If set, this gift code was received from a [giveaway \u00bb](https:\/\/core.telegram.org\/api\/giveaways) started by a channel we're subscribed to.",
"object_messageActionGiftCode_param_unclaimed_type_flags.2?true": "If set, the link was not [redeemed](https:\/\/core.telegram.org\/api\/links#premium-giftcode-links) yet.",
"object_messageActionGiftCode_param_boost_peer_type_flags.1?Peer": "Identifier of the channel that created the gift code [either directly or through a giveaway](https:\/\/core.telegram.org\/api\/giveaways): if we import this giftcode link, we will also automatically [boost](https:\/\/core.telegram.org\/api\/boost) this channel.",
"object_messageActionGiftCode_param_months_type_int": "Duration in months of the gifted [Telegram Premium subscription](https:\/\/core.telegram.org\/api\/premium).",
"object_messageActionGiftCode_param_slug_type_string": "Slug of the [Telegram Premium giftcode link](https:\/\/core.telegram.org\/api\/links#premium-giftcode-links)",
"object_messageActionGiftCode_param_currency_type_flags.2?string": "Three-letter ISO 4217 [currency](https:\/\/core.telegram.org\/bots\/payments#supported-currencies) code",
"object_messageActionGiftCode_param_amount_type_flags.2?long": "Total price in the smallest units of the currency (integer, not float\/double). For example, for a price of `US$ 1.45` pass `amount = 145`. See the exp parameter in [currencies.json](https:\/\/core.telegram.org\/bots\/payments\/currencies.json), it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).",
"object_messageActionGiftCode_param_crypto_currency_type_flags.3?string": "If set, the gift was made using the specified cryptocurrency.",
"object_messageActionGiftCode_param_crypto_amount_type_flags.3?long": "If `crypto_currency` is set, contains the paid amount, in the smallest units of the cryptocurrency.",
"object_channelAdminLogEventActionChangeAvailableReactions": "The set of allowed [message reactions \u00bb](https:\/\/core.telegram.org\/api\/reactions) for this channel has changed",
"object_channelAdminLogEventActionChangeAvailableReactions_param_prev_value_type_ChatReactions": "Previously allowed reaction emojis",
"object_channelAdminLogEventActionChangeAvailableReactions_param_new_value_type_ChatReactions": "New allowed reaction emojis",
"object_attachMenuBotsBot": "Represents a [bot mini app that can be launched from the attachment menu \u00bb](https:\/\/core.telegram.org\/api\/bots\/attach)",
"object_attachMenuBotsBot_param_bot_type_AttachMenuBot": "Represents a [bot mini app that can be launched from the attachment menu \u00bb](https:\/\/core.telegram.org\/api\/bots\/attach)<br>",
"object_attachMenuBotsBot_param_users_type_Vector<User>": "Info about related users and bots",
"object_encryptedChat": "Encrypted chat",
"object_encryptedChat_param_id_type_int": "Chat ID",
"object_encryptedChat_param_access_hash_type_long": "Check sum dependent on the user ID",
"object_encryptedChat_param_date_type_int": "Date chat was created",
"object_encryptedChat_param_admin_id_type_long": "Chat creator ID",
"object_encryptedChat_param_participant_id_type_long": "ID of the second chat participant",
"object_encryptedChat_param_g_a_or_b_type_bytes": "`B = g ^ b mod p`, if the currently authorized user is the chat's creator,<br>or `A = g ^ a mod p` otherwise<br>See [Wikipedia](https:\/\/en.wikipedia.org\/wiki\/Diffie%E2%80%93Hellman_key_exchange) for more info",
"object_encryptedChat_param_key_fingerprint_type_long": "64-bit fingerprint of received key",
"object_inputMediaAreaChannelPost": "Represents a channel post",
"object_inputMediaAreaChannelPost_param_coordinates_type_MediaAreaCoordinates": "The size and location of the media area corresponding to the location sticker on top of the story media.",
"object_inputMediaAreaChannelPost_param_channel_type_InputChannel": "The channel that posted the message",
"object_inputMediaAreaChannelPost_param_msg_id_type_int": "ID of the channel message",
"object_updateBotMenuButton": "The menu button behavior for the specified bot has changed",
"object_updateBotMenuButton_param_bot_id_type_long": "Bot ID",
"object_updateBotMenuButton_param_button_type_BotMenuButton": "New menu button",
"object_secureValueTypeTemporaryRegistration": "Temporary registration",
"object_messagePeerVoteInputOption": "How a peer voted in a poll (reduced constructor, returned if an `option` was provided to [messages.getPollVotes](..\/methods\/messages.getPollVotes.md))",
"object_messagePeerVoteInputOption_param_peer_type_Peer": "The peer that voted for the queried `option`",
"object_messagePeerVoteInputOption_param_date_type_int": "When did the peer cast the vote",
"object_messageActionChannelMigrateFrom": "Indicates the channel was [migrated](https:\/\/core.telegram.org\/api\/channel) from the specified chat",
"object_messageActionChannelMigrateFrom_param_title_type_string": "The old chat title",
"object_messageActionChannelMigrateFrom_param_chat_id_type_long": "The old chat ID",
"object_chatParticipantCreator": "Represents the creator of the group",
"object_chatParticipantCreator_param_user_id_type_long": "ID of the user that created the group",
"object_notifyChats": "Notifications generated by all groups.",
"object_inlineQueryPeerTypePM": "Peer type: private chat",
"object_updateAttachMenuBots": "The list of installed [attachment menu entries \u00bb](https:\/\/core.telegram.org\/api\/bots\/attach) has changed, use [messages.getAttachMenuBots](..\/methods\/messages.getAttachMenuBots.md) to fetch the updated list.",
"object_inputFileBig": "Assigns a big file (over 10 MB in size), saved in part using the method [upload.saveBigFilePart](..\/methods\/upload.saveBigFilePart.md).",
"object_inputFileBig_param_id_type_long": "Random file id, created by the client",
"object_inputFileBig_param_parts_type_int": "Number of parts saved",
"object_inputFileBig_param_name_type_string": "Full file name",
"object_channelAdminLogEventsFilter": "Filter only certain admin log events",
"object_channelAdminLogEventsFilter_param_join_type_flags.0?true": "[Join events](..\/constructors\/channelAdminLogEventActionParticipantJoin.md), including [joins using invite links](..\/constructors\/channelAdminLogEventActionParticipantJoinByInvite.md) and [join requests](..\/constructors\/channelAdminLogEventActionParticipantJoinByRequest.md).",
"object_channelAdminLogEventsFilter_param_leave_type_flags.1?true": "[Leave events](..\/constructors\/channelAdminLogEventActionParticipantLeave.md)",
"object_channelAdminLogEventsFilter_param_invite_type_flags.2?true": "[Invite events](..\/constructors\/channelAdminLogEventActionParticipantInvite.md)",
"object_channelAdminLogEventsFilter_param_ban_type_flags.3?true": "[Ban events](..\/constructors\/channelAdminLogEventActionParticipantToggleBan.md)",
"object_channelAdminLogEventsFilter_param_unban_type_flags.4?true": "[Unban events](..\/constructors\/channelAdminLogEventActionParticipantToggleBan.md)",
"object_channelAdminLogEventsFilter_param_kick_type_flags.5?true": "[Kick events](..\/constructors\/channelAdminLogEventActionParticipantToggleBan.md)",
"object_channelAdminLogEventsFilter_param_unkick_type_flags.6?true": "[Unkick events](..\/constructors\/channelAdminLogEventActionParticipantToggleBan.md)",
"object_channelAdminLogEventsFilter_param_promote_type_flags.7?true": "[Admin promotion events](..\/constructors\/channelAdminLogEventActionParticipantToggleAdmin.md)",
"object_channelAdminLogEventsFilter_param_demote_type_flags.8?true": "[Admin demotion events](..\/constructors\/channelAdminLogEventActionParticipantToggleAdmin.md)",
"object_channelAdminLogEventsFilter_param_info_type_flags.9?true": "Info change events (when [about](..\/constructors\/channelAdminLogEventActionChangeAbout.md), [linked chat](..\/constructors\/channelAdminLogEventActionChangeLinkedChat.md), [location](..\/constructors\/channelAdminLogEventActionChangeLocation.md), [photo](..\/constructors\/channelAdminLogEventActionChangePhoto.md), [stickerset](..\/constructors\/channelAdminLogEventActionChangeStickerSet.md), [title](..\/constructors\/channelAdminLogEventActionChangeTitle.md) or [username](..\/constructors\/channelAdminLogEventActionChangeUsername.md), [slowmode](..\/constructors\/channelAdminLogEventActionToggleSlowMode.md), [history TTL](..\/constructors\/channelAdminLogEventActionChangeHistoryTTL.md) settings of a channel gets modified)",
"object_channelAdminLogEventsFilter_param_settings_type_flags.10?true": "Settings change events ([invites](..\/constructors\/channelAdminLogEventActionToggleInvites.md), [hidden prehistory](..\/constructors\/channelAdminLogEventActionTogglePreHistoryHidden.md), [signatures](..\/constructors\/channelAdminLogEventActionToggleSignatures.md), [default banned rights](..\/constructors\/channelAdminLogEventActionDefaultBannedRights.md), [forum toggle events](..\/constructors\/channelAdminLogEventActionToggleForum.md))",
"object_channelAdminLogEventsFilter_param_pinned_type_flags.11?true": "[Message pin events](..\/constructors\/channelAdminLogEventActionUpdatePinned.md)",
"object_channelAdminLogEventsFilter_param_edit_type_flags.12?true": "[Message edit events](..\/constructors\/channelAdminLogEventActionEditMessage.md)",
"object_channelAdminLogEventsFilter_param_delete_type_flags.13?true": "[Message deletion events](..\/constructors\/channelAdminLogEventActionDeleteMessage.md)",
"object_channelAdminLogEventsFilter_param_group_call_type_flags.14?true": "Group call events",
"object_channelAdminLogEventsFilter_param_invites_type_flags.15?true": "Invite events",
"object_channelAdminLogEventsFilter_param_send_type_flags.16?true": "A message was posted in a channel",
"object_channelAdminLogEventsFilter_param_forums_type_flags.17?true": "[Forum](https:\/\/core.telegram.org\/api\/forum)-related events",
"object_channelAdminLogEventActionChangeTheme": "The chat theme was changed",
"object_channelAdminLogEventActionChangeTheme_param_prev_value_type_string": "Previous theme emoji",
"object_channelAdminLogEventActionChangeTheme_param_new_value_type_string": "New theme emoji",
"object_booster": "Info about a [boost](https:\/\/core.telegram.org\/api\/boost) made by a specific user.",
"object_booster_param_user_id_type_long": "ID of the user that made the boost.",
"object_booster_param_expires_type_int": "Default expiration date of the boost.",
"object_webDocument": "Remote document",
"object_webDocument_param_url_type_string": "Document URL",
"object_webDocument_param_access_hash_type_long": "Access hash",
"object_webDocument_param_size_type_int": "File size",
"object_webDocument_param_mime_type_type_string": "MIME type",
"object_webDocument_param_attributes_type_Vector<DocumentAttribute>": "Attributes for media types",
"object_topPeerCategoryCorrespondents": "Users we've chatted most frequently with",
"object_decryptedMessageMediaWebPage": "Webpage preview",
"object_decryptedMessageMediaWebPage_param_url_type_string": "URL of webpage",
"object_messages.affectedMessages": "Events affected by operation",
"object_messages.affectedMessages_param_pts_type_int": "[Event count after generation](https:\/\/core.telegram.org\/api\/updates)",
"object_messages.affectedMessages_param_pts_count_type_int": "[Number of events that were generated](https:\/\/core.telegram.org\/api\/updates)",
"object_textAnchor": "Text linking to another section of the page",
"object_textAnchor_param_text_type_RichText": "Text",
"object_textAnchor_param_name_type_string": "Section name",
"object_messages.transcribedAudio": "[Transcribed text from a voice message \u00bb](https:\/\/core.telegram.org\/api\/transcribe)",
"object_messages.transcribedAudio_param_pending_type_flags.0?true": "Whether the transcription is partial because audio transcription is still in progress, if set the user may receive further [updateTranscribedAudio](..\/constructors\/updateTranscribedAudio.md) updates with the updated transcription.",
"object_messages.transcribedAudio_param_transcription_id_type_long": "Transcription ID",
"object_messages.transcribedAudio_param_text_type_string": "Transcripted text",
"object_messages.transcribedAudio_param_trial_remains_num_type_flags.1?int": "For non-[Premium](https:\/\/core.telegram.org\/api\/premium) users, this flag will be set, indicating the remaining transcriptions in the free trial period.",
"object_messages.transcribedAudio_param_trial_remains_until_date_type_flags.1?int": "For non-[Premium](https:\/\/core.telegram.org\/api\/premium) users, this flag will be set, indicating the date when the `trial_remains_num` counter will be reset to the maximum value of [transcribe\\_audio\\_trial\\_weekly\\_number](https:\/\/core.telegram.org\/api\/config#transcribe-audio-trial-weekly-number).",
"object_upload.file": "File content.",
"object_upload.file_param_type_type_storage.FileType": "File type",
"object_upload.file_param_mtime_type_int": "Modification time",
"object_upload.file_param_bytes_type_bytes": "Binary data, file content",
"object_messages.chatFull": "Full info about a [channel](https:\/\/core.telegram.org\/api\/channel#channels), [supergroup](https:\/\/core.telegram.org\/api\/channel#supergroups), [gigagroup](https:\/\/core.telegram.org\/api\/channel#gigagroups) or [basic group](https:\/\/core.telegram.org\/api\/channel#basic-groups).",
"object_messages.chatFull_param_full_chat_type_ChatFull": "Full info",
"object_messages.chatFull_param_chats_type_Vector<Chat>": "Mentioned chats",
"object_messages.chatFull_param_users_type_Vector<User>": "Mentioned users",
"object_textItalic": "*Italic* text",
"object_textItalic_param_text_type_RichText": "Text",
"object_inputCheckPasswordEmpty": "There is no password",
"object_peerLocated": "Peer geolocated nearby",
"object_peerLocated_param_peer_type_Peer": "Peer",
"object_peerLocated_param_expires_type_int": "Validity period of current data",
"object_peerLocated_param_distance_type_int": "Distance from the peer in meters",
"object_inputNotifyForumTopic": "Notifications generated by a [topic](https:\/\/core.telegram.org\/api\/forum#forum-topics) in a [forum](https:\/\/core.telegram.org\/api\/forum).",
"object_inputNotifyForumTopic_param_peer_type_InputPeer": "Forum ID",
"object_inputNotifyForumTopic_param_top_msg_id_type_int": "[Topic ID](https:\/\/core.telegram.org\/api\/forum#forum-topics)",
"object_peerBlocked": "Information about a blocked peer",
"object_peerBlocked_param_peer_id_type_Peer": "Peer ID",
"object_peerBlocked_param_date_type_int": "When was the peer blocked",
"object_paymentCharge": "Payment identifier",
"object_paymentCharge_param_id_type_string": "Telegram payment identifier",
"object_paymentCharge_param_provider_charge_id_type_string": "Provider payment identifier",
"object_restrictionReason": "Restriction reason.\n\nContains the reason why access to a certain object must be restricted. Clients are supposed to deny access to the channel if the `platform` field is equal to `all` or to the current platform (`ios`, `android`, `wp`, etc.). Platforms can be concatenated (`ios-android`, `ios-wp`), unknown platforms are to be ignored. The `text` is the error message that should be shown to the user.",
"object_restrictionReason_param_platform_type_string": "Platform identifier (ios, android, wp, all, etc.), can be concatenated with a dash as separator (`android-ios`, `ios-wp`, etc)",
"object_restrictionReason_param_reason_type_string": "Restriction reason (`porno`, `terms`, etc.)",
"object_restrictionReason_param_text_type_string": "Error message to be shown to the user",
"object_textMarked": "Highlighted text",
"object_textMarked_param_text_type_RichText": "Text",
"object_decryptedMessageLayer": "Sets the layer number for the contents of an encrypted message.",
"object_decryptedMessageLayer_param_random_bytes_type_bytes": "Set of random bytes to prevent content recognition in short encrypted messages.<br>Clients are required to check that there are at least 15 random bytes included in each message. Messages with less than 15 random bytes must be ignored.<br>Parameter moved here from [decryptedMessage](..\/constructors\/decryptedMessage.md) in Layer 17.",
"object_decryptedMessageLayer_param_layer_type_int": "Layer number. Mimimal value - **17** (the layer in which the constructor was added).",
"object_decryptedMessageLayer_param_in_seq_no_type_int": "2x the number of messages in the sender's inbox (including deleted and service messages), incremented by 1 if current user was not the chat creator<br>Parameter added in Layer 17.",
"object_decryptedMessageLayer_param_out_seq_no_type_int": "2x the number of messages in the recipient's inbox (including deleted and service messages), incremented by 1 if current user was the chat creator<br>Parameter added in Layer 17.",
"object_decryptedMessageLayer_param_message_type_DecryptedMessage": "The content of message itself",
"object_documentAttributeImageSize": "Defines the width and height of an image uploaded as document",
"object_documentAttributeImageSize_param_w_type_int": "Width of image",
"object_documentAttributeImageSize_param_h_type_int": "Height of image",
"object_inputInvoiceSlug": "An invoice slug taken from an [invoice deep link](https:\/\/core.telegram.org\/api\/links#invoice-links) or from the [`premium_invoice_slug` app config parameter \u00bb](https:\/\/core.telegram.org\/api\/config#premium-invoice-slug)",
"object_inputInvoiceSlug_param_slug_type_string": "The invoice slug",
"object_encryptedFileEmpty": "Empty constructor, non-existing file.",
"object_messageMediaEmpty": "Empty constructor.",
"object_folder": "Folder",
"object_folder_param_autofill_new_broadcasts_type_flags.0?true": "Automatically add new channels to this folder",
"object_folder_param_autofill_public_groups_type_flags.1?true": "Automatically add joined new public supergroups to this folder",
"object_folder_param_autofill_new_correspondents_type_flags.2?true": "Automatically add new private chats to this folder",
"object_folder_param_id_type_int": "Folder ID",
"object_folder_param_title_type_string": "Folder title",
"object_folder_param_photo_type_flags.3?ChatPhoto": "Folder picture",
"object_pageBlockEmbedPost": "An embedded post",
"object_pageBlockEmbedPost_param_url_type_string": "Web page URL",
"object_pageBlockEmbedPost_param_webpage_id_type_long": "ID of generated webpage preview",
"object_pageBlockEmbedPost_param_author_photo_id_type_long": "ID of the author's photo",
"object_pageBlockEmbedPost_param_author_type_string": "Author name",
"object_pageBlockEmbedPost_param_date_type_int": "Creation date",
"object_pageBlockEmbedPost_param_blocks_type_Vector<PageBlock>": "Post contents",
"object_pageBlockEmbedPost_param_caption_type_PageCaption": "Caption",
"object_invoice": "Invoice",
"object_invoice_param_test_type_flags.0?true": "Test invoice",
"object_invoice_param_name_requested_type_flags.1?true": "Set this flag if you require the user's full name to complete the order",
"object_invoice_param_phone_requested_type_flags.2?true": "Set this flag if you require the user's phone number to complete the order",
"object_invoice_param_email_requested_type_flags.3?true": "Set this flag if you require the user's email address to complete the order",
"object_invoice_param_shipping_address_requested_type_flags.4?true": "Set this flag if you require the user's shipping address to complete the order",
"object_invoice_param_flexible_type_flags.5?true": "Set this flag if the final price depends on the shipping method",
"object_invoice_param_phone_to_provider_type_flags.6?true": "Set this flag if user's phone number should be sent to provider",
"object_invoice_param_email_to_provider_type_flags.7?true": "Set this flag if user's email address should be sent to provider",
"object_invoice_param_recurring_type_flags.9?true": "Whether this is a recurring payment",
"object_invoice_param_currency_type_string": "Three-letter ISO 4217 [currency](https:\/\/core.telegram.org\/bots\/payments#supported-currencies) code",
"object_invoice_param_prices_type_Vector<LabeledPrice>": "Price breakdown, a list of components (e.g. product price, tax, discount, delivery cost, delivery tax, bonus, etc.)",
"object_invoice_param_max_tip_amount_type_flags.8?long": "The maximum accepted amount for tips in the smallest units of the currency (integer, not float\/double). For example, for a price of `US$ 1.45` pass `amount = 145`. See the exp parameter in [currencies.json](https:\/\/core.telegram.org\/bots\/payments\/currencies.json), it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).",
"object_invoice_param_suggested_tip_amounts_type_flags.8?Vector<long>": "A vector of suggested amounts of tips in the *smallest units* of the currency (integer, not float\/double). At most 4 suggested tip amounts can be specified. The suggested tip amounts must be positive, passed in a strictly increased order and must not exceed `max_tip_amount`.",
"object_invoice_param_terms_url_type_flags.10?string": "Terms of service URL",
"object_storage.fileMp3": "Mp3 audio. MIME type: `audio\/mpeg`.",
"object_nearestDc": "Nearest data center, according to geo-ip.",
"object_nearestDc_param_country_type_string": "Country code determined by geo-ip",
"object_nearestDc_param_this_dc_type_int": "Number of current data center",
"object_nearestDc_param_nearest_dc_type_int": "Number of nearest data center",
"object_inputUser": "Defines a user for further interaction.",
"object_inputUser_param_user_id_type_long": "User identifier",
"object_inputUser_param_access_hash_type_long": "**access\\_hash** value from the [user](..\/constructors\/user.md) constructor",
"object_inputWallPaperNoFile": "[Wallpaper](https:\/\/core.telegram.org\/api\/wallpapers) with no file access hash, used for example when deleting (`unsave=true`) wallpapers using [account.saveWallPaper](..\/methods\/account.saveWallPaper.md), specifying just the wallpaper ID.",
"object_inputWallPaperNoFile_param_id_type_long": "Wallpaper ID",
"object_updateBotCommands": "The [command set](https:\/\/core.telegram.org\/api\/bots\/commands) of a certain bot in a certain chat has changed.",
"object_updateBotCommands_param_peer_type_Peer": "The affected chat",
"object_updateBotCommands_param_bot_id_type_long": "ID of the bot that changed its command set",
"object_updateBotCommands_param_commands_type_Vector<BotCommand>": "New bot commands",
"object_contacts.blockedSlice": "Incomplete list of blocked users.",
"object_contacts.blockedSlice_param_count_type_int": "Total number of elements in the list",
"object_contacts.blockedSlice_param_blocked_type_Vector<PeerBlocked>": "List of blocked users",
"object_contacts.blockedSlice_param_chats_type_Vector<Chat>": "Blocked chats",
"object_contacts.blockedSlice_param_users_type_Vector<User>": "List of users",
"object_channelAdminLogEventActionChangePhoto": "The channel\/supergroup's picture was changed",
"object_channelAdminLogEventActionChangePhoto_param_prev_photo_type_Photo": "Previous picture",
"object_channelAdminLogEventActionChangePhoto_param_new_photo_type_Photo": "New picture",
"object_maskCoords": "Position on a photo where a mask should be placed when [attaching stickers to media \u00bb](https:\/\/core.telegram.org\/api\/stickers#attached-stickers)\n\nThe `n` position indicates where the mask should be placed:\n\n- 0 => Relative to the forehead\n- 1 => Relative to the eyes\n- 2 => Relative to the mouth\n- 3 => Relative to the chin",
"object_maskCoords_param_n_type_int": "Part of the face, relative to which the mask should be placed",
"object_maskCoords_param_x_type_double": "Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just to the left of the default mask position)",
"object_maskCoords_param_y_type_double": "Shift by Y-axis measured in widths of the mask scaled to the face size, from left to right. (For example, -1.0 will place the mask just below the default mask position)",
"object_maskCoords_param_zoom_type_double": "Mask scaling coefficient. (For example, 2.0 means a doubled size)",
"object_payments.checkedGiftCode": "Contains info about a [Telegram Premium giftcode link](https:\/\/core.telegram.org\/api\/links#premium-giftcode-links).",
"object_payments.checkedGiftCode_param_via_giveaway_type_flags.2?true": "Whether this giftcode was created by a [giveaway](https:\/\/core.telegram.org\/api\/giveaways).",
"object_payments.checkedGiftCode_param_from_id_type_flags.4?Peer": "The peer that created the gift code.",
"object_payments.checkedGiftCode_param_giveaway_msg_id_type_flags.3?int": "Message ID of the giveaway in the channel specified in `from_id`.",
"object_payments.checkedGiftCode_param_to_id_type_flags.0?long": "The destination user of the gift.",
"object_payments.checkedGiftCode_param_date_type_int": "Creation date of the gift code.",
"object_payments.checkedGiftCode_param_months_type_int": "Duration in months of the gifted [Telegram Premium](https:\/\/core.telegram.org\/api\/premium) subscription.",
"object_payments.checkedGiftCode_param_used_date_type_flags.1?int": "When was the giftcode imported, if it was imported.",
"object_payments.checkedGiftCode_param_chats_type_Vector<Chat>": "Mentioned chats",
"object_payments.checkedGiftCode_param_users_type_Vector<User>": "Mentioned users",
"object_inputPrivacyKeyVoiceMessages": "Whether people can send you voice messages",
"object_chatPhoto": "Group profile photo.",
"object_chatPhoto_param_has_video_type_flags.0?true": "Whether the user has an animated profile picture",
"object_chatPhoto_param_photo_id_type_long": "Photo ID",
"object_chatPhoto_param_stripped_thumb_type_flags.1?bytes": "[Stripped thumbnail](https:\/\/core.telegram.org\/api\/files#stripped-thumbnails)",
"object_chatPhoto_param_dc_id_type_int": "DC where this photo is stored",
"object_updates.differenceEmpty": "No events.",
"object_updates.differenceEmpty_param_date_type_int": "Current date",
"object_updates.differenceEmpty_param_seq_type_int": "Number of sent updates",
"object_defaultHistoryTTL": "Contains info about the default value of the Time-To-Live setting, applied to all new chats.",
"object_defaultHistoryTTL_param_period_type_int": "Time-To-Live setting applied to all new chats.",
"object_privacyKeyStatusTimestamp": "Whether we can see the last online timestamp of this user",
"object_updateTranscribedAudio": "A pending [voice message transcription \u00bb](https:\/\/core.telegram.org\/api\/transcribe) initiated with [messages.transcribeAudio](..\/methods\/messages.transcribeAudio.md) was updated.",
"object_updateTranscribedAudio_param_pending_type_flags.0?true": "Whether this transcription is still pending and further [updateTranscribedAudio](..\/constructors\/updateTranscribedAudio.md) about it will be sent in the future.",
"object_updateTranscribedAudio_param_peer_type_Peer": "Peer of the transcribed message",
"object_updateTranscribedAudio_param_msg_id_type_int": "Transcribed message ID",
"object_updateTranscribedAudio_param_transcription_id_type_long": "Transcription ID",
"object_updateTranscribedAudio_param_text_type_string": "Transcribed text",
"object_updatePinnedMessages": "Some messages were pinned in a chat",
"object_updatePinnedMessages_param_pinned_type_flags.0?true": "Whether the messages were pinned or unpinned",
"object_updatePinnedMessages_param_peer_type_Peer": "Peer",
"object_updatePinnedMessages_param_messages_type_Vector<int>": "Message IDs",
"object_updatePinnedMessages_param_pts_type_int": "[Event count after generation](https:\/\/core.telegram.org\/api\/updates)",
"object_updatePinnedMessages_param_pts_count_type_int": "[Number of events that were generated](https:\/\/core.telegram.org\/api\/updates)",
"object_textConcat": "Concatenation of rich texts",
"object_textConcat_param_texts_type_Vector<RichText>": "Concatenated rich texts",
"object_webPageEmpty": "No preview is available for the webpage",
"object_webPageEmpty_param_id_type_long": "Preview ID",
"object_webPageEmpty_param_url_type_flags.0?string": "URL of the webpage.",
"object_inputTheme": "Theme",
"object_inputTheme_param_id_type_long": "ID",
"object_inputTheme_param_access_hash_type_long": "Access hash",
"object_stickerPack": "A stickerpack is a group of stickers associated to the same emoji. \nIt is **not** a sticker pack the way it is usually intended, you may be looking for a [StickerSet](..\/types\/StickerSet.md).",
"object_stickerPack_param_emoticon_type_string": "Emoji",
"object_stickerPack_param_documents_type_Vector<long>": "Stickers",
"object_baseThemeArctic": "Arctic theme",
"object_updateChannelMessageForwards": "The forward counter of a message in a channel has changed",
"object_updateChannelMessageForwards_param_channel_id_type_long": "Channel ID",
"object_updateChannelMessageForwards_param_id_type_int": "ID of the message",
"object_updateChannelMessageForwards_param_forwards_type_int": "New forward counter",
"object_userStatusEmpty": "User status has not been set yet.",
"object_urlAuthResultDefault": "Details about an accepted authorization request, for more info [click here \u00bb](https:\/\/core.telegram.org\/api\/url-authorization)",
"object_pageBlockAuthorDate": "Author and date of creation of article",
"object_pageBlockAuthorDate_param_author_type_RichText": "Author name",
"object_pageBlockAuthorDate_param_published_date_type_int": "Date of publication",
"object_help.userInfoEmpty": "Internal use",
"object_stories.storyViewsList": "Reaction and view counters for a [story](https:\/\/core.telegram.org\/api\/stories)",
"object_stories.storyViewsList_param_count_type_int": "Total number of results that can be fetched",
"object_stories.storyViewsList_param_views_count_type_int": "Total number of story views",
"object_stories.storyViewsList_param_forwards_count_type_int": "Total number of story forwards\/reposts",
"object_stories.storyViewsList_param_reactions_count_type_int": "Number of reactions that were added to the story",
"object_stories.storyViewsList_param_views_type_Vector<StoryView>": "Story view date and reaction information",
"object_stories.storyViewsList_param_chats_type_Vector<Chat>": "Mentioned chats",
"object_stories.storyViewsList_param_users_type_Vector<User>": "Mentioned users",
"object_stories.storyViewsList_param_next_offset_type_flags.0?string": "Offset for pagination",
"object_boost": "Info about one or more [boosts](https:\/\/core.telegram.org\/api\/boost) applied by a specific user.",
"object_boost_param_gift_type_flags.1?true": "Whether this boost was applied because the channel [directly gifted a subscription to the user](https:\/\/core.telegram.org\/api\/giveaways).",
"object_boost_param_giveaway_type_flags.2?true": "Whether this boost was applied because the user was chosen in a [giveaway started by the channel](https:\/\/core.telegram.org\/api\/giveaways).",
"object_boost_param_unclaimed_type_flags.3?true": "If set, the user hasn't yet invoked [payments.applyGiftCode](..\/methods\/payments.applyGiftCode.md) to claim a subscription gifted [directly or in a giveaway by the channel](https:\/\/core.telegram.org\/api\/giveaways).",
"object_boost_param_id_type_string": "Unique ID for this set of boosts.",
"object_boost_param_user_id_type_flags.0?long": "ID of the user that applied the boost.",
"object_boost_param_giveaway_msg_id_type_flags.2?int": "The message ID of the [giveaway](https:\/\/core.telegram.org\/api\/giveaways)",
"object_boost_param_date_type_int": "When was the boost applied",
"object_boost_param_expires_type_int": "When does the boost expire",
"object_boost_param_used_gift_slug_type_flags.4?string": "The created Telegram Premium gift code, only set if either `gift` or `giveaway` are set AND it is either a gift code for the currently logged in user or if it was already claimed.",
"object_boost_param_multiplier_type_flags.5?int": "If set, this boost counts as `multiplier` boosts, otherwise it counts as a single boost.",
"object_notificationSoundNone": "No notification sound should be used",
"object_keyboardButtonRow": "Inline keyboard row",
"object_keyboardButtonRow_param_buttons_type_Vector<KeyboardButton>": "Bot or inline keyboard buttons",
"object_help.deepLinkInfoEmpty": "Deep link info empty",
"object_phone.joinAsPeers": "A list of peers that can be used to join a group call, presenting yourself as a specific user\/channel.",
"object_phone.joinAsPeers_param_peers_type_Vector<Peer>": "Peers",
"object_phone.joinAsPeers_param_chats_type_Vector<Chat>": "Chats mentioned in the peers vector",
"object_phone.joinAsPeers_param_users_type_Vector<User>": "Users mentioned in the peers vector",
"object_channelAdminLogEventActionParticipantToggleAdmin": "The admin [rights](https:\/\/core.telegram.org\/api\/rights) of a user were changed",
"object_channelAdminLogEventActionParticipantToggleAdmin_param_prev_participant_type_ChannelParticipant": "Previous admin rights",
"object_channelAdminLogEventActionParticipantToggleAdmin_param_new_participant_type_ChannelParticipant": "New admin rights",
"object_keyboardButtonUserProfile": "Button that links directly to a user profile",
"object_keyboardButtonUserProfile_param_text_type_string": "Button text",
"object_keyboardButtonUserProfile_param_user_id_type_long": "User ID",
"object_inputAppEvent": "Event that occurred in the application.",
"object_inputAppEvent_param_time_type_double": "Client's exact timestamp for the event",
"object_inputAppEvent_param_type_type_string": "Type of event",
"object_inputAppEvent_param_peer_type_long": "Arbitrary numeric value for more convenient selection of certain event types, or events referring to a certain object",
"object_inputAppEvent_param_data_type_JSONValue": "Details of the event",
"object_messageMediaWebPage": "Preview of webpage",
"object_messageMediaWebPage_param_force_large_media_type_flags.0?true": "If set, specifies that a large media preview should be used.",
"object_messageMediaWebPage_param_force_small_media_type_flags.1?true": "If set, specifies that a small media preview should be used.",
"object_messageMediaWebPage_param_manual_type_flags.3?true": "If set, indicates that the URL used for the webpage preview was specified manually using [inputMediaWebPage](..\/constructors\/inputMediaWebPage.md), and may not be related to any of the URLs specified in the message.",
"object_messageMediaWebPage_param_safe_type_flags.4?true": "If set, the webpage can be opened directly without user confirmation; otherwise, user confirmation is required, showing the exact URL that will be opened.",
"object_messageMediaWebPage_param_webpage_type_WebPage": "Webpage preview",
"object_contacts.contacts": "The current user's contact list and info on users.",
"object_contacts.contacts_param_contacts_type_Vector<Contact>": "Contact list",
"object_contacts.contacts_param_saved_count_type_int": "Number of contacts that were saved successfully",
"object_contacts.contacts_param_users_type_Vector<User>": "User list",
"object_pageBlockCollage": "Collage of media",
"object_pageBlockCollage_param_items_type_Vector<PageBlock>": "Media elements",
"object_pageBlockCollage_param_caption_type_PageCaption": "Caption",
"object_baseThemeClassic": "Classic theme",
"object_inputReportReasonGeoIrrelevant": "Report an irrelevant geogroup",
"object_account.chatThemesNotModified": "The available chat themes were not modified",
"object_phoneCallRequested": "Requested phone call",
"object_phoneCallRequested_param_video_type_flags.6?true": "Whether this is a video call",
"object_phoneCallRequested_param_id_type_long": "Phone call ID",
"object_phoneCallRequested_param_access_hash_type_long": "Access hash",
"object_phoneCallRequested_param_date_type_int": "When was the phone call created",
"object_phoneCallRequested_param_admin_id_type_long": "ID of the creator of the phone call",
"object_phoneCallRequested_param_participant_id_type_long": "ID of the other participant of the phone call",
"object_phoneCallRequested_param_g_a_hash_type_bytes": "[Parameter for key exchange](https:\/\/core.telegram.org\/api\/end-to-end\/voice-calls)",
"object_phoneCallRequested_param_protocol_type_PhoneCallProtocol": "Call protocol info to be passed to libtgvoip",
"object_chatlists.exportedInvites": "Info about multiple [chat folder deep links \u00bb](https:\/\/core.telegram.org\/api\/links#chat-folder-links).",
"object_chatlists.exportedInvites_param_invites_type_Vector<ExportedChatlistInvite>": "The [chat folder deep links \u00bb](https:\/\/core.telegram.org\/api\/links#chat-folder-links).",
"object_chatlists.exportedInvites_param_chats_type_Vector<Chat>": "Related chat information",
"object_chatlists.exportedInvites_param_users_type_Vector<User>": "Related user information",
"object_inputPaymentCredentials": "Payment credentials",
"object_inputPaymentCredentials_param_save_type_flags.0?true": "Save payment credential for future use",
"object_inputPaymentCredentials_param_data_type_DataJSON": "Payment credentials",
"object_user": "Indicates info about a certain user",
"object_user_param_self_type_flags.10?true": "Whether this user indicates the currently logged in user",
"object_user_param_contact_type_flags.11?true": "Whether this user is a contact",
"object_user_param_mutual_contact_type_flags.12?true": "Whether this user is a mutual contact",
"object_user_param_deleted_type_flags.13?true": "Whether the account of this user was deleted",
"object_user_param_bot_type_flags.14?true": "Is this user a bot?",
"object_user_param_bot_chat_history_type_flags.15?true": "Can the bot see all messages in groups?",
"object_user_param_bot_nochats_type_flags.16?true": "Can the bot be added to groups?",
"object_user_param_verified_type_flags.17?true": "Whether this user is verified",
"object_user_param_restricted_type_flags.18?true": "Access to this user must be restricted for the reason specified in `restriction_reason`",
"object_user_param_min_type_flags.20?true": "See [min](https:\/\/core.telegram.org\/api\/min)",
"object_user_param_bot_inline_geo_type_flags.21?true": "Whether the bot can request our geolocation in inline mode",
"object_user_param_support_type_flags.23?true": "Whether this is an official support user",
"object_user_param_scam_type_flags.24?true": "This may be a scam user",
"object_user_param_apply_min_photo_type_flags.25?true": "If set, the profile picture for this user should be refetched",
"object_user_param_fake_type_flags.26?true": "If set, this user was reported by many users as a fake or scam user: be careful when interacting with them.",
"object_user_param_bot_attach_menu_type_flags.27?true": "Whether this bot offers an [attachment menu web app](https:\/\/core.telegram.org\/api\/bots\/attach)",
"object_user_param_premium_type_flags.28?true": "Whether this user is a Telegram Premium user",
"object_user_param_attach_menu_enabled_type_flags.29?true": "Whether we installed the [attachment menu web app](https:\/\/core.telegram.org\/api\/bots\/attach) offered by this bot",
"object_user_param_flags2_type_#": "Flags, see [TL conditional fields](https:\/\/core.telegram.org\/mtproto\/TL-combinators#conditional-fields)",
"object_user_param_bot_can_edit_type_flags2.1?true": "Whether we can edit the profile picture, name, about text and description of this bot because we own it.",
"object_user_param_close_friend_type_flags2.2?true": "Whether we marked this user as a [close friend, see here \u00bb for more info](https:\/\/core.telegram.org\/api\/privacy)",
"object_user_param_stories_hidden_type_flags2.3?true": "Whether we have [hidden \u00bb](https:\/\/core.telegram.org\/api\/stories#hiding-stories-of-other-users) all active stories of this user.",
"object_user_param_stories_unavailable_type_flags2.4?true": "No stories from this user are visible.",
"object_user_param_id_type_long": "ID of the user",
"object_user_param_access_hash_type_flags.0?long": "Access hash of the user",
"object_user_param_first_name_type_flags.1?string": "First name",
"object_user_param_last_name_type_flags.2?string": "Last name",
"object_user_param_username_type_flags.3?string": "Username",
"object_user_param_phone_type_flags.4?string": "Phone number",
"object_user_param_photo_type_flags.5?UserProfilePhoto": "Profile picture of user",
"object_user_param_status_type_flags.6?UserStatus": "Online status of user",
"object_user_param_bot_info_version_type_flags.14?int": "Version of the [bot\\_info field in userFull](..\/constructors\/userFull.md), incremented every time it changes",
"object_user_param_restriction_reason_type_flags.18?Vector<RestrictionReason>": "Contains the reason why access to this user must be restricted.",
"object_user_param_bot_inline_placeholder_type_flags.19?string": "Inline placeholder for this inline bot",
"object_user_param_lang_code_type_flags.22?string": "Language code of the user",
"object_user_param_emoji_status_type_flags.30?EmojiStatus": "[Emoji status](https:\/\/core.telegram.org\/api\/emoji-status)",
"object_user_param_usernames_type_flags2.0?Vector<Username>": "Additional usernames",
"object_user_param_stories_max_id_type_flags2.5?int": "ID of the maximum read [story](https:\/\/core.telegram.org\/api\/stories).",
"object_user_param_color_type_flags2.8?PeerColor": "The user's [accent color](https:\/\/core.telegram.org\/api\/colors).",
"object_user_param_profile_color_type_flags2.9?PeerColor": "The user's [profile color](https:\/\/core.telegram.org\/api\/colors).",
"object_updateReadChannelOutbox": "Outgoing messages in a [channel\/supergroup](https:\/\/core.telegram.org\/api\/channel) were read",
"object_updateReadChannelOutbox_param_channel_id_type_long": "Channel\/supergroup ID",
"object_updateReadChannelOutbox_param_max_id_type_int": "Position up to which all outgoing messages are read.",
"object_pageBlockTitle": "Title",
"object_pageBlockTitle_param_text_type_RichText": "Title",
"object_true": "See [predefined identifiers](https:\/\/core.telegram.org\/mtproto\/TL-formal#predefined-identifiers).",
"object_messages.messagesNotModified": "No new messages matching the query were found",
"object_messages.messagesNotModified_param_count_type_int": "Number of results found server-side by the given query",
"object_inputPeerEmpty": "An empty constructor, no user or chat is defined.",
"object_inputStorePaymentPremiumSubscription": "Info about a Telegram Premium purchase",
"object_inputStorePaymentPremiumSubscription_param_restore_type_flags.0?true": "Pass true if this is a restore of a Telegram Premium purchase; only for the App Store",
"object_inputStorePaymentPremiumSubscription_param_upgrade_type_flags.1?true": "Pass true if this is an upgrade from a monthly subscription to a yearly subscription; only for App Store",
"object_theme": "Theme",
"object_theme_param_creator_type_flags.0?true": "Whether the current user is the creator of this theme",
"object_theme_param_default_type_flags.1?true": "Whether this is the default theme",
"object_theme_param_for_chat_type_flags.5?true": "Whether this theme is meant to be used as a [chat theme](https:\/\/telegram.org\/blog\/chat-themes-interactive-emoji-read-receipts)",
"object_theme_param_id_type_long": "Theme ID",
"object_theme_param_access_hash_type_long": "Theme access hash",
"object_theme_param_slug_type_string": "Unique theme ID",
"object_theme_param_title_type_string": "Theme name",
"object_theme_param_document_type_flags.2?Document": "Theme",
"object_theme_param_settings_type_flags.3?Vector<ThemeSettings>": "Theme settings",
"object_theme_param_emoticon_type_flags.6?string": "Theme emoji",
"object_theme_param_installs_count_type_flags.4?int": "Installation count",
"object_messageEntityEmail": "Message entity representing an <email@example.com>.",
"object_messageEntityEmail_param_offset_type_int": "Offset of message entity within message (in [UTF-16 code units](https:\/\/core.telegram.org\/api\/entities#entity-length))",
"object_messageEntityEmail_param_length_type_int": "Length of message entity within message (in [UTF-16 code units](https:\/\/core.telegram.org\/api\/entities#entity-length))",
"object_groupCallStreamChannel": "Info about an RTMP stream in a group call or livestream",
"object_groupCallStreamChannel_param_channel_type_int": "Channel ID",
"object_groupCallStreamChannel_param_scale_type_int": "Specifies the duration of the video segment to fetch in milliseconds, by bitshifting `1000` to the right `scale` times: `duration_ms := 1000 >> scale`.",
"object_groupCallStreamChannel_param_last_timestamp_ms_type_long": "Last seen timestamp to easily start fetching livestream chunks using [inputGroupCallStream](..\/constructors\/inputGroupCallStream.md)",
"object_updateDeleteChannelMessages": "Some messages in a [supergroup\/channel](https:\/\/core.telegram.org\/api\/channel) were deleted",
"object_updateDeleteChannelMessages_param_channel_id_type_long": "Channel ID",
"object_updateDeleteChannelMessages_param_messages_type_Vector<int>": "IDs of messages that were deleted",
"object_updateDeleteChannelMessages_param_pts_type_int": "[Event count after generation](https:\/\/core.telegram.org\/api\/updates)",
"object_updateDeleteChannelMessages_param_pts_count_type_int": "[Number of events that were generated](https:\/\/core.telegram.org\/api\/updates)",
"object_channelAdminLogEventActionUpdatePinned": "A message was pinned",
"object_channelAdminLogEventActionUpdatePinned_param_message_type_Message": "The message that was pinned",
"object_decryptedMessageMediaVenue": "Venue",
"object_decryptedMessageMediaVenue_param_lat_type_double": "Latitude of venue",
"object_decryptedMessageMediaVenue_param_long_type_double": "Longitude of venue",
"object_decryptedMessageMediaVenue_param_title_type_string": "Venue name",
"object_decryptedMessageMediaVenue_param_address_type_string": "Address",
"object_decryptedMessageMediaVenue_param_provider_type_string": "Venue provider: currently only \"foursquare\" and \"gplaces\" (Google Places) need to be supported",
"object_decryptedMessageMediaVenue_param_venue_id_type_string": "Venue ID in the provider's database",
"object_updateNewScheduledMessage": "A message was added to the [schedule queue of a chat](https:\/\/core.telegram.org\/api\/scheduled-messages)",
"object_updateNewScheduledMessage_param_message_type_Message": "Message",
"object_messages.stickerSet": "Stickerset and stickers inside it",
"object_messages.stickerSet_param_set_type_StickerSet": "The stickerset",
"object_messages.stickerSet_param_packs_type_Vector<StickerPack>": "Emoji info for stickers",
"object_messages.stickerSet_param_keywords_type_Vector<StickerKeyword>": "Keywords for some or every sticker in the stickerset.",
"object_messages.stickerSet_param_documents_type_Vector<Document>": "Stickers in stickerset",
"object_messageMediaGiveaway": "Contains info about a [giveaway, see here \u00bb](https:\/\/core.telegram.org\/api\/giveaways) for more info.",
"object_messageMediaGiveaway_param_only_new_subscribers_type_flags.0?true": "If set, only new subscribers starting from the giveaway creation date will be able to participate to the giveaway.",
"object_messageMediaGiveaway_param_winners_are_visible_type_flags.2?true": "If set, giveaway winners are public and will be listed in a [messageMediaGiveawayResults](..\/constructors\/messageMediaGiveawayResults.md) message that will be automatically sent to the channel once the giveaway ends.",
"object_messageMediaGiveaway_param_channels_type_Vector<long>": "The channels that the user must join to participate in the giveaway.",
"object_messageMediaGiveaway_param_countries_iso2_type_flags.1?Vector<string>": "If set, only users residing in these countries can participate in the giveaway, (specified as a list of two-letter ISO 3166-1 alpha-2 country codes); otherwise there are no country-based limitations.",
"object_messageMediaGiveaway_param_prize_description_type_flags.3?string": "Can contain a textual description of additional giveaway prizes.",
"object_messageMediaGiveaway_param_quantity_type_int": "Number of [Telegram Premium](https:\/\/core.telegram.org\/api\/premium) subscriptions given away.",
"object_messageMediaGiveaway_param_months_type_int": "Duration in months of each [Telegram Premium](https:\/\/core.telegram.org\/api\/premium) subscription in the giveaway.",
"object_messageMediaGiveaway_param_until_date_type_int": "The end date of the giveaway.",
"object_userStatusOnline": "Online status of the user.",
"object_userStatusOnline_param_expires_type_int": "Time to expiration of the current online status",
"object_channelAdminLogEventActionToggleForum": "[Forum](https:\/\/core.telegram.org\/api\/forum) functionality was enabled or disabled.",
"object_channelAdminLogEventActionToggleForum_param_new_value_type_Bool": "Whether [forum](https:\/\/core.telegram.org\/api\/forum) functionality was enabled or disabled.",
"object_messageActionChatJoinedByRequest": "A user was accepted into the group by an admin",
"object_channelAdminLogEventActionPinTopic": "A [forum topic](https:\/\/core.telegram.org\/api\/forum#forum-topics) was pinned or unpinned",
"object_channelAdminLogEventActionPinTopic_param_prev_topic_type_flags.0?ForumTopic": "Previous topic information",
"object_channelAdminLogEventActionPinTopic_param_new_topic_type_flags.1?ForumTopic": "New topic information",
"object_inputInvoicePremiumGiftCode": "Used if the user wishes to start a channel [giveaway](https:\/\/core.telegram.org\/api\/giveaways) or send some [giftcodes](https:\/\/core.telegram.org\/api\/giveaways) to members of a channel, in exchange for [boosts](https:\/\/core.telegram.org\/api\/boost).",
"object_inputInvoicePremiumGiftCode_param_purpose_type_InputStorePaymentPurpose": "Should be populated with [inputStorePaymentPremiumGiveaway](..\/constructors\/inputStorePaymentPremiumGiveaway.md) for [giveaways](https:\/\/core.telegram.org\/api\/giveaways) and [inputStorePaymentPremiumGiftCode](..\/constructors\/inputStorePaymentPremiumGiftCode.md) for [gifts](https:\/\/core.telegram.org\/api\/giveaways).",
"object_inputInvoicePremiumGiftCode_param_option_type_PremiumGiftCodeOption": "Should be populated with one of the giveaway options returned by [payments.getPremiumGiftCodeOptions](..\/methods\/payments.getPremiumGiftCodeOptions.md), see the [giveaways \u00bb](https:\/\/core.telegram.org\/api\/giveaways) documentation for more info.",
"object_upload.webFile": "Represents a chunk of an [HTTP webfile](https:\/\/core.telegram.org\/api\/files) downloaded through telegram's secure MTProto servers",
"object_upload.webFile_param_size_type_int": "File size",
"object_upload.webFile_param_mime_type_type_string": "Mime type",
"object_upload.webFile_param_file_type_type_storage.FileType": "File type",
"object_upload.webFile_param_mtime_type_int": "Modified time",
"object_upload.webFile_param_bytes_type_bytes": "Data",
"object_channels.channelParticipantsNotModified": "No new participant info could be found",
"object_passwordKdfAlgoUnknown": "Unknown KDF (most likely, the client is outdated and does not support the specified KDF algorithm)",
"object_messages.emojiGroupsNotModified": "The list of [emoji categories](https:\/\/core.telegram.org\/api\/custom-emoji#emoji-categories) hasn't changed.",
"object_updateChannelViewForumAsMessages": "Users may also choose to display messages from all topics as if they were sent to a normal group, using a \"View as messages\" setting in the local client. \nThis setting only affects the current account, and is synced to other logged in sessions using the [channels.toggleViewForumAsMessages](..\/methods\/channels.toggleViewForumAsMessages.md) method; invoking this method will update the value of the `view_forum_as_messages` flag of [channelFull](..\/constructors\/channelFull.md) or [dialog](..\/constructors\/dialog.md) and emit an [updateChannelViewForumAsMessages](..\/constructors\/updateChannelViewForumAsMessages.md).",
"object_updateChannelViewForumAsMessages_param_channel_id_type_long": "The forum ID",
"object_updateChannelViewForumAsMessages_param_enabled_type_Bool": "The new value of the toggle.",
"object_updateConfig": "The server-side configuration has changed; the client should re-fetch the config using [help.getConfig](..\/methods\/help.getConfig.md)",
"object_keyboardButtonRequestPoll": "A button that allows the user to create and send a poll when pressed; available only in private",
"object_keyboardButtonRequestPoll_param_quiz_type_flags.0?Bool": "If set, only quiz polls can be sent",
"object_keyboardButtonRequestPoll_param_text_type_string": "Button text",
"object_secureValueErrorTranslationFile": "Represents an issue with one of the files that constitute the translation of a document. The error is considered resolved when the file changes.",
"object_secureValueErrorTranslationFile_param_type_type_SecureValueType": "One of [secureValueTypePersonalDetails](..\/constructors\/secureValueTypePersonalDetails.md), [secureValueTypePassport](..\/constructors\/secureValueTypePassport.md), [secureValueTypeDriverLicense](..\/constructors\/secureValueTypeDriverLicense.md), [secureValueTypeIdentityCard](..\/constructors\/secureValueTypeIdentityCard.md), [secureValueTypeInternalPassport](..\/constructors\/secureValueTypeInternalPassport.md), [secureValueTypeUtilityBill](..\/constructors\/secureValueTypeUtilityBill.md), [secureValueTypeBankStatement](..\/constructors\/secureValueTypeBankStatement.md), [secureValueTypeRentalAgreement](..\/constructors\/secureValueTypeRentalAgreement.md), [secureValueTypePassportRegistration](..\/constructors\/secureValueTypePassportRegistration.md), [secureValueTypeTemporaryRegistration](..\/constructors\/secureValueTypeTemporaryRegistration.md)",
"object_secureValueErrorTranslationFile_param_file_hash_type_bytes": "File hash",
"object_secureValueErrorTranslationFile_param_text_type_string": "Error message",
"object_updateChatParticipantDelete": "A member has left the group.",
"object_updateChatParticipantDelete_param_chat_id_type_long": "Group ID",
"object_updateChatParticipantDelete_param_user_id_type_long": "ID of the user",
"object_updateChatParticipantDelete_param_version_type_int": "Used in basic groups to reorder updates and make sure that all of them was received.",
"object_updateBotPrecheckoutQuery": "This object contains information about an incoming pre-checkout query.",
"object_updateBotPrecheckoutQuery_param_query_id_type_long": "Unique query identifier",
"object_updateBotPrecheckoutQuery_param_user_id_type_long": "User who sent the query",
"object_updateBotPrecheckoutQuery_param_payload_type_bytes": "Bot specified invoice payload",
"object_updateBotPrecheckoutQuery_param_info_type_flags.0?PaymentRequestedInfo": "Order info provided by the user",
"object_updateBotPrecheckoutQuery_param_shipping_option_id_type_flags.1?string": "Identifier of the shipping option chosen by the user",
"object_updateBotPrecheckoutQuery_param_currency_type_string": "Three-letter ISO 4217 [currency](https:\/\/core.telegram.org\/bots\/payments#supported-currencies) code",
"object_updateBotPrecheckoutQuery_param_total_amount_type_long": "Total amount in the smallest units of the currency (integer, not float\/double). For example, for a price of `US$ 1.45` pass `amount = 145`. See the exp parameter in [currencies.json](https:\/\/core.telegram.org\/bots\/payments\/currencies.json), it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).",
"object_replyKeyboardHide": "Hide sent bot keyboard",
"object_replyKeyboardHide_param_selective_type_flags.2?true": "Use this flag if you want to remove the keyboard for specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply\\_to\\_message\\_id), sender of the original message.<br><br>Example: A user votes in a poll, bot returns confirmation message in reply to the vote and removes the keyboard for that user, while still showing the keyboard with poll options to users who haven't voted yet",
"object_stats.storyStats": "Contains [statistics](https:\/\/core.telegram.org\/api\/stats) about a [story](https:\/\/core.telegram.org\/api\/stories).",
"object_stats.storyStats_param_views_graph_type_StatsGraph": "A graph containing the number of story views and shares",
"object_stats.storyStats_param_reactions_by_emotion_graph_type_StatsGraph": "A bar graph containing the number of story reactions categorized by \"emotion\" (i.e. Positive, Negative, Other, etc...)",
"object_inputEncryptedFileEmpty": "Empty constructor.",
"object_help.peerColors": "Contains info about multiple [color palettes \u00bb](https:\/\/core.telegram.org\/api\/colors).",
"object_help.peerColors_param_hash_type_int": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_help.peerColors_param_colors_type_Vector<help.PeerColorOption>": "Usable [color palettes](https:\/\/core.telegram.org\/api\/colors).",
"object_userEmpty": "Empty constructor, non-existent user.",
"object_userEmpty_param_id_type_long": "User identifier or `0`",
"object_help.termsOfServiceUpdate": "Info about an update of telegram's terms of service. If the terms of service are declined, then the [account.deleteAccount](..\/methods\/account.deleteAccount.md) method should be called with the reason \"Decline ToS update\"",
"object_help.termsOfServiceUpdate_param_expires_type_int": "New TOS updates will have to be queried using [help.getTermsOfServiceUpdate](..\/methods\/help.getTermsOfServiceUpdate.md) in `expires` seconds",
"object_help.termsOfServiceUpdate_param_terms_of_service_type_help.TermsOfService": "New terms of service",
"object_userFull": "Extended user info",
"object_userFull_param_blocked_type_flags.0?true": "Whether you have blocked this user",
"object_userFull_param_phone_calls_available_type_flags.4?true": "Whether this user can make VoIP calls",
"object_userFull_param_phone_calls_private_type_flags.5?true": "Whether this user's privacy settings allow you to call them",
"object_userFull_param_can_pin_message_type_flags.7?true": "Whether you can pin messages in the chat with this user, you can do this only for a chat with yourself",
"object_userFull_param_has_scheduled_type_flags.12?true": "Whether [scheduled messages](https:\/\/core.telegram.org\/api\/scheduled-messages) are available",
"object_userFull_param_video_calls_available_type_flags.13?true": "Whether the user can receive video calls",
"object_userFull_param_voice_messages_forbidden_type_flags.20?true": "Whether this user doesn't allow sending voice messages in a private chat with them",
"object_userFull_param_translations_disabled_type_flags.23?true": "Whether the [real-time chat translation popup](https:\/\/core.telegram.org\/api\/translation) should be hidden.",
"object_userFull_param_stories_pinned_available_type_flags.26?true": "Whether this user has some [pinned stories](https:\/\/core.telegram.org\/api\/stories#pinned-or-archived-stories).",
"object_userFull_param_blocked_my_stories_from_type_flags.27?true": "Whether we've [blocked this user, preventing them from seeing our stories \u00bb](https:\/\/core.telegram.org\/api\/block).",
"object_userFull_param_wallpaper_overridden_type_flags.28?true": "Whether the other user has chosen a custom wallpaper for us using [messages.setChatWallPaper](..\/methods\/messages.setChatWallPaper.md) and the `for_both` flag, see [here \u00bb](https:\/\/core.telegram.org\/api\/wallpapers#installing-wallpapers-in-a-specific-chat-or-channel) for more info.",
"object_userFull_param_id_type_long": "User ID",
"object_userFull_param_about_type_flags.1?string": "Bio of the user",
"object_userFull_param_settings_type_PeerSettings": "Peer settings",
"object_userFull_param_personal_photo_type_flags.21?Photo": "Personal profile photo, to be shown instead of `profile_photo`.",
"object_userFull_param_profile_photo_type_flags.2?Photo": "Profile photo",
"object_userFull_param_fallback_photo_type_flags.22?Photo": "Fallback profile photo, displayed if no photo is present in `profile_photo` or `personal_photo`, due to privacy settings.",
"object_userFull_param_notify_settings_type_PeerNotifySettings": "Notification settings",
"object_userFull_param_bot_info_type_flags.3?BotInfo": "For bots, info about the bot (bot commands, etc)",
"object_userFull_param_pinned_msg_id_type_flags.6?int": "Message ID of the last [pinned message](https:\/\/core.telegram.org\/api\/pin)",
"object_userFull_param_common_chats_count_type_int": "Chats in common with this user",
"object_userFull_param_folder_id_type_flags.11?int": "[Peer folder ID, for more info click here](https:\/\/core.telegram.org\/api\/folders#peer-folders)",
"object_userFull_param_ttl_period_type_flags.14?int": "Time To Live of all messages in this chat; once a message is this many seconds old, it must be deleted.",
"object_userFull_param_theme_emoticon_type_flags.15?string": "Emoji associated with chat theme",
"object_userFull_param_private_forward_name_type_flags.16?string": "Anonymized text to be shown instead of the user's name on forwarded messages",
"object_userFull_param_bot_group_admin_rights_type_flags.17?ChatAdminRights": "A [suggested set of administrator rights](https:\/\/core.telegram.org\/api\/rights#suggested-bot-rights) for the bot, to be shown when adding the bot as admin to a group, see [here for more info on how to handle them \u00bb](https:\/\/core.telegram.org\/api\/rights#suggested-bot-rights).",
"object_userFull_param_bot_broadcast_admin_rights_type_flags.18?ChatAdminRights": "A [suggested set of administrator rights](https:\/\/core.telegram.org\/api\/rights#suggested-bot-rights) for the bot, to be shown when adding the bot as admin to a channel, see [here for more info on how to handle them \u00bb](https:\/\/core.telegram.org\/api\/rights#suggested-bot-rights).",
"object_userFull_param_premium_gifts_type_flags.19?Vector<PremiumGiftOption>": "Telegram Premium subscriptions gift options",
"object_userFull_param_wallpaper_type_flags.24?WallPaper": "[Wallpaper](https:\/\/core.telegram.org\/api\/wallpapers) to use in the private chat with the user.",
"object_userFull_param_stories_type_flags.25?PeerStories": "Active [stories \u00bb](https:\/\/core.telegram.org\/api\/stories)",
"object_phoneCallDiscardReasonMissed": "The phone call was missed",
"object_sendMessageEmojiInteraction": "User has clicked on an animated emoji triggering a [reaction, click here for more info \u00bb](https:\/\/core.telegram.org\/api\/animated-emojis#emoji-reactions).",
"object_sendMessageEmojiInteraction_param_emoticon_type_string": "Emoji",
"object_sendMessageEmojiInteraction_param_msg_id_type_int": "Message ID of the animated emoji that was clicked",
"object_sendMessageEmojiInteraction_param_interaction_type_DataJSON": "A JSON object with interaction info, [click here for more info \u00bb](https:\/\/core.telegram.org\/api\/animated-emojis#emoji-reactions)",
"object_pageBlockRelatedArticles": "Related articles",
"object_pageBlockRelatedArticles_param_title_type_RichText": "Title",
"object_pageBlockRelatedArticles_param_articles_type_Vector<PageRelatedArticle>": "Related articles",
"object_payments.paymentVerificationNeeded": "Payment was not successful, additional verification is needed",
"object_payments.paymentVerificationNeeded_param_url_type_string": "URL for additional payment credentials verification",
"object_messageActionSetChatWallPaper": "The [wallpaper \u00bb](https:\/\/core.telegram.org\/api\/wallpapers) of the current chat was changed.",
"object_messageActionSetChatWallPaper_param_same_type_flags.0?true": "If set, indicates the user applied a [wallpaper \u00bb](https:\/\/core.telegram.org\/api\/wallpapers) previously sent by the other user in a [messageActionSetChatWallPaper](..\/constructors\/messageActionSetChatWallPaper.md) message.",
"object_messageActionSetChatWallPaper_param_for_both_type_flags.1?true": "If set, indicates the wallpaper was forcefully applied for both sides, without explicit confirmation from the other side. <br>If the message is incoming, and we did not like the new wallpaper the other user has chosen for us, we can re-set our previous wallpaper just on our side, by invoking [messages.setChatWallPaper](..\/methods\/messages.setChatWallPaper.md), providing only the `revert` flag (and obviously the `peer` parameter).",
"object_messageActionSetChatWallPaper_param_wallpaper_type_WallPaper": "New [wallpaper](https:\/\/core.telegram.org\/api\/wallpapers)",
"object_inputFileLocation": "DEPRECATED location of a photo",
"object_inputFileLocation_param_volume_id_type_long": "Server volume",
"object_inputFileLocation_param_local_id_type_int": "File identifier",
"object_inputFileLocation_param_secret_type_long": "Check sum to access the file",
"object_inputFileLocation_param_file_reference_type_bytes": "[File reference](https:\/\/core.telegram.org\/api\/file_reference)",
"object_chatForbidden": "A group to which the user has no access. E.g., because the user was kicked from the group.",
"object_chatForbidden_param_id_type_long": "User identifier",
"object_chatForbidden_param_title_type_string": "Group name",
"object_messageActionGiveawayResults": "A [giveaway](https:\/\/core.telegram.org\/api\/giveaways) has ended.",
"object_messageActionGiveawayResults_param_winners_count_type_int": "Number of winners in the giveaway",
"object_messageActionGiveawayResults_param_unclaimed_count_type_int": "Number of undistributed prizes",
"object_photos.photosSlice": "Incomplete list of photos with auxiliary data.",
"object_photos.photosSlice_param_count_type_int": "Total number of photos",
"object_photos.photosSlice_param_photos_type_Vector<Photo>": "List of photos",
"object_photos.photosSlice_param_users_type_Vector<User>": "List of mentioned users",
"object_privacyKeyChatInvite": "Whether the user can be invited to chats",
"object_videoSizeStickerMarkup": "An [animated profile picture](https:\/\/core.telegram.org\/api\/files#animated-profile-pictures) based on a [sticker](https:\/\/core.telegram.org\/api\/stickers).",
"object_videoSizeStickerMarkup_param_stickerset_type_InputStickerSet": "Stickerset",
"object_videoSizeStickerMarkup_param_sticker_id_type_long": "Sticker ID",
"object_videoSizeStickerMarkup_param_background_colors_type_Vector<int>": "1, 2, 3 or 4 RBG-24 colors used to generate a solid (1), gradient (2) or freeform gradient (3, 4) background, similar to how [fill wallpapers](https:\/\/core.telegram.org\/api\/wallpapers#fill-types) are generated. The rotation angle for gradient backgrounds is 0.",
"object_messages.exportedChatInviteReplaced": "The specified chat invite was replaced with another one",
"object_messages.exportedChatInviteReplaced_param_invite_type_ExportedChatInvite": "The replaced chat invite",
"object_messages.exportedChatInviteReplaced_param_new_invite_type_ExportedChatInvite": "The invite that replaces the previous invite",
"object_messages.exportedChatInviteReplaced_param_users_type_Vector<User>": "Mentioned users",
"object_inputPrivacyValueDisallowContacts": "Disallow only contacts",
"object_pageBlockSubtitle": "Subtitle",
"object_pageBlockSubtitle_param_text_type_RichText": "Text",
"object_messages.savedGifs": "Saved gifs",
"object_messages.savedGifs_param_hash_type_long": "[Hash for pagination, for more info click here](https:\/\/core.telegram.org\/api\/offsets#hash-generation)",
"object_messages.savedGifs_param_gifs_type_Vector<Document>": "List of saved gifs",
"object_recentMeUrlChatInvite": "Recent t.me invite link to a chat",
"object_recentMeUrlChatInvite_param_url_type_string": "t.me URL",
"object_recentMeUrlChatInvite_param_chat_invite_type_ChatInvite": "Chat invitation",
"object_auth.authorization": "Contains user authorization info.",