-
Notifications
You must be signed in to change notification settings - Fork 2
/
haskell-tdlib.cabal
1497 lines (1491 loc) · 49.4 KB
/
haskell-tdlib.cabal
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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: haskell-tdlib
version: 2.0.53.0
description: Please see the README on GitHub at <https://github.com/mejgun/haskell-tdlib>
homepage: https://github.com/mejgun/haskell-tdlib#readme
bug-reports: https://github.com/mejgun/haskell-tdlib/issues
author: Author name here
maintainer: example@example.com
copyright: 2020 Author name here
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/mejgun/haskell-tdlib
library
exposed-modules:
TD.Data.AccentColor
TD.Data.AccountTtl
TD.Data.AddedReaction
TD.Data.AddedReactions
TD.Data.Address
TD.Data.AffiliateInfo
TD.Data.AffiliateProgramInfo
TD.Data.AffiliateProgramParameters
TD.Data.AffiliateProgramSortOrder
TD.Data.AffiliateType
TD.Data.AlternativeVideo
TD.Data.AnimatedChatPhoto
TD.Data.AnimatedEmoji
TD.Data.Animation
TD.Data.Animations
TD.Data.ArchiveChatListSettings
TD.Data.AttachmentMenuBot
TD.Data.AttachmentMenuBotColor
TD.Data.Audio
TD.Data.AuthenticationCodeInfo
TD.Data.AuthenticationCodeType
TD.Data.AuthorizationState
TD.Data.AutoDownloadSettings
TD.Data.AutoDownloadSettingsPresets
TD.Data.AutosaveSettings
TD.Data.AutosaveSettingsException
TD.Data.AutosaveSettingsScope
TD.Data.AvailableReaction
TD.Data.AvailableReactions
TD.Data.Background
TD.Data.BackgroundFill
TD.Data.Backgrounds
TD.Data.BackgroundType
TD.Data.BankCardActionOpenUrl
TD.Data.BankCardInfo
TD.Data.BasicGroup
TD.Data.BasicGroupFullInfo
TD.Data.Birthdate
TD.Data.BlockList
TD.Data.BotCommand
TD.Data.BotCommands
TD.Data.BotCommandScope
TD.Data.BotInfo
TD.Data.BotMediaPreview
TD.Data.BotMediaPreviewInfo
TD.Data.BotMediaPreviews
TD.Data.BotMenuButton
TD.Data.BotVerification
TD.Data.BotVerificationParameters
TD.Data.BotWriteAccessAllowReason
TD.Data.BusinessAwayMessageSchedule
TD.Data.BusinessAwayMessageSettings
TD.Data.BusinessBotManageBar
TD.Data.BusinessChatLink
TD.Data.BusinessChatLinkInfo
TD.Data.BusinessChatLinks
TD.Data.BusinessConnectedBot
TD.Data.BusinessConnection
TD.Data.BusinessFeature
TD.Data.BusinessFeaturePromotionAnimation
TD.Data.BusinessFeatures
TD.Data.BusinessGreetingMessageSettings
TD.Data.BusinessInfo
TD.Data.BusinessLocation
TD.Data.BusinessMessage
TD.Data.BusinessMessages
TD.Data.BusinessOpeningHours
TD.Data.BusinessOpeningHoursInterval
TD.Data.BusinessRecipients
TD.Data.BusinessStartPage
TD.Data.Call
TD.Data.CallbackQueryAnswer
TD.Data.CallbackQueryPayload
TD.Data.CallDiscardReason
TD.Data.CallId
TD.Data.CallProblem
TD.Data.CallProtocol
TD.Data.CallServer
TD.Data.CallServerType
TD.Data.CallState
TD.Data.CanSendMessageToUserResult
TD.Data.CanSendStoryResult
TD.Data.CanTransferOwnershipResult
TD.Data.Chat
TD.Data.ChatAction
TD.Data.ChatActionBar
TD.Data.ChatActiveStories
TD.Data.ChatAdministrator
TD.Data.ChatAdministratorRights
TD.Data.ChatAdministrators
TD.Data.ChatAvailableReactions
TD.Data.ChatBackground
TD.Data.ChatBoost
TD.Data.ChatBoostFeatures
TD.Data.ChatBoostLevelFeatures
TD.Data.ChatBoostLink
TD.Data.ChatBoostLinkInfo
TD.Data.ChatBoostSlot
TD.Data.ChatBoostSlots
TD.Data.ChatBoostSource
TD.Data.ChatBoostStatus
TD.Data.ChatEvent
TD.Data.ChatEventAction
TD.Data.ChatEventLogFilters
TD.Data.ChatEvents
TD.Data.ChatFolder
TD.Data.ChatFolderIcon
TD.Data.ChatFolderInfo
TD.Data.ChatFolderInviteLink
TD.Data.ChatFolderInviteLinkInfo
TD.Data.ChatFolderInviteLinks
TD.Data.ChatFolderName
TD.Data.ChatInviteLink
TD.Data.ChatInviteLinkCount
TD.Data.ChatInviteLinkCounts
TD.Data.ChatInviteLinkInfo
TD.Data.ChatInviteLinkMember
TD.Data.ChatInviteLinkMembers
TD.Data.ChatInviteLinks
TD.Data.ChatInviteLinkSubscriptionInfo
TD.Data.ChatJoinRequest
TD.Data.ChatJoinRequests
TD.Data.ChatJoinRequestsInfo
TD.Data.ChatList
TD.Data.ChatLists
TD.Data.ChatLocation
TD.Data.ChatMember
TD.Data.ChatMembers
TD.Data.ChatMembersFilter
TD.Data.ChatMemberStatus
TD.Data.ChatMessageSender
TD.Data.ChatMessageSenders
TD.Data.ChatNotificationSettings
TD.Data.ChatPermissions
TD.Data.ChatPhoto
TD.Data.ChatPhotoInfo
TD.Data.ChatPhotos
TD.Data.ChatPhotoSticker
TD.Data.ChatPhotoStickerType
TD.Data.ChatPosition
TD.Data.ChatRevenueAmount
TD.Data.ChatRevenueStatistics
TD.Data.ChatRevenueTransaction
TD.Data.ChatRevenueTransactions
TD.Data.ChatRevenueTransactionType
TD.Data.Chats
TD.Data.ChatSource
TD.Data.ChatStatistics
TD.Data.ChatStatisticsAdministratorActionsInfo
TD.Data.ChatStatisticsInteractionInfo
TD.Data.ChatStatisticsInviterInfo
TD.Data.ChatStatisticsMessageSenderInfo
TD.Data.ChatStatisticsObjectType
TD.Data.ChatTheme
TD.Data.ChatType
TD.Data.CheckChatUsernameResult
TD.Data.CheckStickerSetNameResult
TD.Data.CloseBirthdayUser
TD.Data.ClosedVectorPath
TD.Data.CollectibleItemInfo
TD.Data.CollectibleItemType
TD.Data.ConnectedAffiliateProgram
TD.Data.ConnectedAffiliatePrograms
TD.Data.ConnectedWebsite
TD.Data.ConnectedWebsites
TD.Data.ConnectionState
TD.Data.Contact
TD.Data.Count
TD.Data.Countries
TD.Data.CountryInfo
TD.Data.CreatedBasicGroupChat
TD.Data.CurrentWeather
TD.Data.CustomRequestResult
TD.Data.DatabaseStatistics
TD.Data.Date
TD.Data.DatedFile
TD.Data.DateRange
TD.Data.DeepLinkInfo
TD.Data.DeviceToken
TD.Data.DiceStickers
TD.Data.Document
TD.Data.DownloadedFileCounts
TD.Data.DraftMessage
TD.Data.EmailAddressAuthentication
TD.Data.EmailAddressAuthenticationCodeInfo
TD.Data.EmailAddressResetState
TD.Data.EmojiCategories
TD.Data.EmojiCategory
TD.Data.EmojiCategorySource
TD.Data.EmojiCategoryType
TD.Data.EmojiKeyword
TD.Data.EmojiKeywords
TD.Data.EmojiReaction
TD.Data.Emojis
TD.Data.EmojiStatus
TD.Data.EmojiStatuses
TD.Data.EncryptedCredentials
TD.Data.EncryptedPassportElement
TD.Data.Error
TD.Data.FactCheck
TD.Data.FailedToAddMember
TD.Data.FailedToAddMembers
TD.Data.File
TD.Data.FileDownload
TD.Data.FileDownloadedPrefixSize
TD.Data.FilePart
TD.Data.FileType
TD.Data.FirebaseAuthenticationSettings
TD.Data.FirebaseDeviceVerificationParameters
TD.Data.FormattedText
TD.Data.ForumTopic
TD.Data.ForumTopicIcon
TD.Data.ForumTopicInfo
TD.Data.ForumTopics
TD.Data.ForwardSource
TD.Data.FoundAffiliateProgram
TD.Data.FoundAffiliatePrograms
TD.Data.FoundChatBoosts
TD.Data.FoundChatMessages
TD.Data.FoundFileDownloads
TD.Data.FoundMessages
TD.Data.FoundPosition
TD.Data.FoundPositions
TD.Data.FoundStories
TD.Data.FoundUsers
TD.Data.FoundWebApp
TD.Data.Game
TD.Data.GameHighScore
TD.Data.GameHighScores
TD.Data.Gift
TD.Data.Gifts
TD.Data.GiftUpgradePreview
TD.Data.GiveawayInfo
TD.Data.GiveawayParameters
TD.Data.GiveawayParticipantStatus
TD.Data.GiveawayPrize
TD.Data.GroupCall
TD.Data.GroupCallId
TD.Data.GroupCallParticipant
TD.Data.GroupCallParticipantVideoInfo
TD.Data.GroupCallRecentSpeaker
TD.Data.GroupCallStream
TD.Data.GroupCallStreams
TD.Data.GroupCallVideoQuality
TD.Data.GroupCallVideoSourceGroup
TD.Data.Hashtags
TD.Data.HttpUrl
TD.Data.IdentityDocument
TD.Data.ImportedContacts
TD.Data.InlineKeyboardButton
TD.Data.InlineKeyboardButtonType
TD.Data.InlineQueryResult
TD.Data.InlineQueryResults
TD.Data.InlineQueryResultsButton
TD.Data.InlineQueryResultsButtonType
TD.Data.InputBackground
TD.Data.InputBusinessChatLink
TD.Data.InputBusinessStartPage
TD.Data.InputChatPhoto
TD.Data.InputCredentials
TD.Data.InputFile
TD.Data.InputIdentityDocument
TD.Data.InputInlineQueryResult
TD.Data.InputInvoice
TD.Data.InputMessageContent
TD.Data.InputMessageReplyTo
TD.Data.InputPaidMedia
TD.Data.InputPaidMediaType
TD.Data.InputPassportElement
TD.Data.InputPassportElementError
TD.Data.InputPassportElementErrorSource
TD.Data.InputPersonalDocument
TD.Data.InputSticker
TD.Data.InputStoryArea
TD.Data.InputStoryAreas
TD.Data.InputStoryAreaType
TD.Data.InputStoryContent
TD.Data.InputTextQuote
TD.Data.InputThumbnail
TD.Data.InternalLinkType
TD.Data.InviteLinkChatType
TD.Data.Invoice
TD.Data.JsonObjectMember
TD.Data.JsonValue
TD.Data.KeyboardButton
TD.Data.KeyboardButtonType
TD.Data.LabeledPricePart
TD.Data.LanguagePackInfo
TD.Data.LanguagePackString
TD.Data.LanguagePackStrings
TD.Data.LanguagePackStringValue
TD.Data.LinkPreview
TD.Data.LinkPreviewAlbumMedia
TD.Data.LinkPreviewOptions
TD.Data.LinkPreviewType
TD.Data.LocalFile
TD.Data.LocalizationTargetInfo
TD.Data.Location
TD.Data.LocationAddress
TD.Data.LoginUrlInfo
TD.Data.LogStream
TD.Data.LogTags
TD.Data.LogVerbosityLevel
TD.Data.MainWebApp
TD.Data.MaskPoint
TD.Data.MaskPosition
TD.Data.Message
TD.Data.MessageAutoDeleteTime
TD.Data.MessageCalendar
TD.Data.MessageCalendarDay
TD.Data.MessageContent
TD.Data.MessageCopyOptions
TD.Data.MessageEffect
TD.Data.MessageEffectType
TD.Data.MessageFileType
TD.Data.MessageForwardInfo
TD.Data.MessageImportInfo
TD.Data.MessageInteractionInfo
TD.Data.MessageLink
TD.Data.MessageLinkInfo
TD.Data.MessageOrigin
TD.Data.MessagePosition
TD.Data.MessagePositions
TD.Data.MessageProperties
TD.Data.MessageReaction
TD.Data.MessageReactions
TD.Data.MessageReadDate
TD.Data.MessageReplyInfo
TD.Data.MessageReplyTo
TD.Data.Messages
TD.Data.MessageSchedulingState
TD.Data.MessageSelfDestructType
TD.Data.MessageSender
TD.Data.MessageSenders
TD.Data.MessageSendingState
TD.Data.MessageSendOptions
TD.Data.MessageSource
TD.Data.MessageSponsor
TD.Data.MessageStatistics
TD.Data.MessageThreadInfo
TD.Data.MessageViewer
TD.Data.MessageViewers
TD.Data.Minithumbnail
TD.Data.NetworkStatistics
TD.Data.NetworkStatisticsEntry
TD.Data.NetworkType
TD.Data.NewChatPrivacySettings
TD.Data.Notification
TD.Data.NotificationGroup
TD.Data.NotificationGroupType
TD.Data.NotificationSettingsScope
TD.Data.NotificationSound
TD.Data.NotificationSounds
TD.Data.NotificationType
TD.Data.Ok
TD.Data.OptionValue
TD.Data.OrderInfo
TD.Data.Outline
TD.Data.PageBlock
TD.Data.PageBlockCaption
TD.Data.PageBlockHorizontalAlignment
TD.Data.PageBlockListItem
TD.Data.PageBlockRelatedArticle
TD.Data.PageBlockTableCell
TD.Data.PageBlockVerticalAlignment
TD.Data.PaidMedia
TD.Data.PaidReactor
TD.Data.PassportAuthorizationForm
TD.Data.PassportElement
TD.Data.PassportElementError
TD.Data.PassportElementErrorSource
TD.Data.PassportElements
TD.Data.PassportElementsWithErrors
TD.Data.PassportElementType
TD.Data.PassportRequiredElement
TD.Data.PassportSuitableElement
TD.Data.PasswordState
TD.Data.PaymentForm
TD.Data.PaymentFormType
TD.Data.PaymentOption
TD.Data.PaymentProvider
TD.Data.PaymentReceipt
TD.Data.PaymentReceiptType
TD.Data.PaymentResult
TD.Data.PersonalDetails
TD.Data.PersonalDocument
TD.Data.PhoneNumberAuthenticationSettings
TD.Data.PhoneNumberCodeType
TD.Data.PhoneNumberInfo
TD.Data.Photo
TD.Data.PhotoSize
TD.Data.Point
TD.Data.Poll
TD.Data.PollOption
TD.Data.PollType
TD.Data.PremiumFeature
TD.Data.PremiumFeaturePromotionAnimation
TD.Data.PremiumFeatures
TD.Data.PremiumGiftCodeInfo
TD.Data.PremiumGiftCodePaymentOption
TD.Data.PremiumGiftCodePaymentOptions
TD.Data.PremiumLimit
TD.Data.PremiumLimitType
TD.Data.PremiumPaymentOption
TD.Data.PremiumSource
TD.Data.PremiumState
TD.Data.PremiumStatePaymentOption
TD.Data.PremiumStoryFeature
TD.Data.PrepaidGiveaway
TD.Data.PreparedInlineMessage
TD.Data.PreparedInlineMessageId
TD.Data.ProductInfo
TD.Data.ProfileAccentColor
TD.Data.ProfileAccentColors
TD.Data.ProfilePhoto
TD.Data.Proxies
TD.Data.Proxy
TD.Data.ProxyType
TD.Data.PublicChatType
TD.Data.PublicForward
TD.Data.PublicForwards
TD.Data.PushMessageContent
TD.Data.PushReceiverId
TD.Data.QuickReplyMessage
TD.Data.QuickReplyMessages
TD.Data.QuickReplyShortcut
TD.Data.ReactionNotificationSettings
TD.Data.ReactionNotificationSource
TD.Data.ReactionType
TD.Data.ReactionUnavailabilityReason
TD.Data.ReadDatePrivacySettings
TD.Data.RecommendedChatFolder
TD.Data.RecommendedChatFolders
TD.Data.RecoveryEmailAddress
TD.Data.RemoteFile
TD.Data.ReplyMarkup
TD.Data.ReportChatResult
TD.Data.ReportChatSponsoredMessageResult
TD.Data.ReportOption
TD.Data.ReportReason
TD.Data.ReportStoryResult
TD.Data.ResendCodeReason
TD.Data.ResetPasswordResult
TD.Data.RevenueWithdrawalState
TD.Data.RichText
TD.Data.RtmpUrl
TD.Data.SavedCredentials
TD.Data.SavedMessagesTag
TD.Data.SavedMessagesTags
TD.Data.SavedMessagesTopic
TD.Data.SavedMessagesTopicType
TD.Data.ScopeAutosaveSettings
TD.Data.ScopeNotificationSettings
TD.Data.SearchMessagesChatTypeFilter
TD.Data.SearchMessagesFilter
TD.Data.Seconds
TD.Data.SecretChat
TD.Data.SecretChatState
TD.Data.SentGift
TD.Data.SentWebAppMessage
TD.Data.Session
TD.Data.Sessions
TD.Data.SessionType
TD.Data.SharedChat
TD.Data.SharedUser
TD.Data.ShippingOption
TD.Data.SpeechRecognitionResult
TD.Data.SponsoredMessage
TD.Data.SponsoredMessages
TD.Data.StarAmount
TD.Data.StarGiveawayPaymentOption
TD.Data.StarGiveawayPaymentOptions
TD.Data.StarGiveawayWinnerOption
TD.Data.StarPaymentOption
TD.Data.StarPaymentOptions
TD.Data.StarRevenueStatistics
TD.Data.StarRevenueStatus
TD.Data.StarSubscription
TD.Data.StarSubscriptionPricing
TD.Data.StarSubscriptions
TD.Data.StarSubscriptionType
TD.Data.StarTransaction
TD.Data.StarTransactionDirection
TD.Data.StarTransactions
TD.Data.StarTransactionType
TD.Data.StatisticalGraph
TD.Data.StatisticalValue
TD.Data.Sticker
TD.Data.StickerFormat
TD.Data.StickerFullType
TD.Data.Stickers
TD.Data.StickerSet
TD.Data.StickerSetInfo
TD.Data.StickerSets
TD.Data.StickerType
TD.Data.StorageStatistics
TD.Data.StorageStatisticsByChat
TD.Data.StorageStatisticsByFileType
TD.Data.StorageStatisticsFast
TD.Data.StorePaymentPurpose
TD.Data.Stories
TD.Data.Story
TD.Data.StoryArea
TD.Data.StoryAreaPosition
TD.Data.StoryAreaType
TD.Data.StoryContent
TD.Data.StoryFullId
TD.Data.StoryInfo
TD.Data.StoryInteraction
TD.Data.StoryInteractionInfo
TD.Data.StoryInteractions
TD.Data.StoryInteractionType
TD.Data.StoryList
TD.Data.StoryOrigin
TD.Data.StoryPrivacySettings
TD.Data.StoryRepostInfo
TD.Data.StoryStatistics
TD.Data.StoryVideo
TD.Data.SuggestedAction
TD.Data.Supergroup
TD.Data.SupergroupFullInfo
TD.Data.SupergroupMembersFilter
TD.Data.TargetChat
TD.Data.TargetChatTypes
TD.Data.TelegramPaymentPurpose
TD.Data.TemporaryPasswordState
TD.Data.TermsOfService
TD.Data.TestBytes
TD.Data.TestInt
TD.Data.TestString
TD.Data.TestVectorInt
TD.Data.TestVectorIntObject
TD.Data.TestVectorString
TD.Data.TestVectorStringObject
TD.Data.Text
TD.Data.TextEntities
TD.Data.TextEntity
TD.Data.TextEntityType
TD.Data.TextParseMode
TD.Data.TextQuote
TD.Data.ThemeParameters
TD.Data.ThemeSettings
TD.Data.Thumbnail
TD.Data.ThumbnailFormat
TD.Data.TimeZone
TD.Data.TimeZones
TD.Data.TMeUrl
TD.Data.TMeUrls
TD.Data.TMeUrlType
TD.Data.TopChatCategory
TD.Data.TrendingStickerSets
TD.Data.UnconfirmedSession
TD.Data.UnreadReaction
TD.Data.Update
TD.Data.Updates
TD.Data.UpgradedGift
TD.Data.UpgradedGiftBackdrop
TD.Data.UpgradedGiftModel
TD.Data.UpgradedGiftOriginalDetails
TD.Data.UpgradedGiftSymbol
TD.Data.UpgradeGiftResult
TD.Data.User
TD.Data.UserFullInfo
TD.Data.UserGift
TD.Data.UserGifts
TD.Data.UserLink
TD.Data.Usernames
TD.Data.UserPrivacySetting
TD.Data.UserPrivacySettingRule
TD.Data.UserPrivacySettingRules
TD.Data.Users
TD.Data.UserStatus
TD.Data.UserSupportInfo
TD.Data.UserType
TD.Data.ValidatedOrderInfo
TD.Data.VectorPathCommand
TD.Data.Venue
TD.Data.VerificationStatus
TD.Data.Video
TD.Data.VideoChat
TD.Data.VideoNote
TD.Data.VoiceNote
TD.Data.WebApp
TD.Data.WebAppInfo
TD.Data.WebAppOpenMode
TD.Data.WebAppOpenParameters
TD.Data.WebPageInstantView
TD.GeneralResult
TD.Lib
TD.Lib.Internal
TD.Query.AcceptCall
TD.Query.AcceptTermsOfService
TD.Query.ActivateStoryStealthMode
TD.Query.AddBotMediaPreview
TD.Query.AddChatFolderByInviteLink
TD.Query.AddChatMember
TD.Query.AddChatMembers
TD.Query.AddChatToList
TD.Query.AddContact
TD.Query.AddCustomServerLanguagePack
TD.Query.AddFavoriteSticker
TD.Query.AddFileToDownloads
TD.Query.AddLocalMessage
TD.Query.AddLogMessage
TD.Query.AddMessageReaction
TD.Query.AddNetworkStatistics
TD.Query.AddPendingPaidMessageReaction
TD.Query.AddProxy
TD.Query.AddQuickReplyShortcutInlineQueryResultMessage
TD.Query.AddQuickReplyShortcutMessage
TD.Query.AddQuickReplyShortcutMessageAlbum
TD.Query.AddRecentlyFoundChat
TD.Query.AddRecentSticker
TD.Query.AddSavedAnimation
TD.Query.AddSavedNotificationSound
TD.Query.AddStickerToSet
TD.Query.AllowBotToSendMessages
TD.Query.AnswerCallbackQuery
TD.Query.AnswerCustomQuery
TD.Query.AnswerInlineQuery
TD.Query.AnswerPreCheckoutQuery
TD.Query.AnswerShippingQuery
TD.Query.AnswerWebAppQuery
TD.Query.ApplyPremiumGiftCode
TD.Query.AssignAppStoreTransaction
TD.Query.AssignGooglePlayTransaction
TD.Query.BanChatMember
TD.Query.BlockMessageSenderFromReplies
TD.Query.BoostChat
TD.Query.CanBotSendMessages
TD.Query.CancelDownloadFile
TD.Query.CancelPasswordReset
TD.Query.CancelPreliminaryUploadFile
TD.Query.CancelRecoveryEmailAddressVerification
TD.Query.CanPurchaseFromStore
TD.Query.CanSendMessageToUser
TD.Query.CanSendStory
TD.Query.CanTransferOwnership
TD.Query.ChangeImportedContacts
TD.Query.ChangeStickerSet
TD.Query.CheckAuthenticationBotToken
TD.Query.CheckAuthenticationCode
TD.Query.CheckAuthenticationEmailCode
TD.Query.CheckAuthenticationPassword
TD.Query.CheckAuthenticationPasswordRecoveryCode
TD.Query.CheckChatFolderInviteLink
TD.Query.CheckChatInviteLink
TD.Query.CheckChatUsername
TD.Query.CheckCreatedPublicChatsLimit
TD.Query.CheckEmailAddressVerificationCode
TD.Query.CheckLoginEmailAddressCode
TD.Query.CheckPasswordRecoveryCode
TD.Query.CheckPhoneNumberCode
TD.Query.CheckPremiumGiftCode
TD.Query.CheckQuickReplyShortcutName
TD.Query.CheckRecoveryEmailAddressCode
TD.Query.CheckStickerSetName
TD.Query.CheckWebAppFileDownload
TD.Query.CleanFileName
TD.Query.ClearAllDraftMessages
TD.Query.ClearAutosaveSettingsExceptions
TD.Query.ClearImportedContacts
TD.Query.ClearRecentEmojiStatuses
TD.Query.ClearRecentlyFoundChats
TD.Query.ClearRecentReactions
TD.Query.ClearRecentStickers
TD.Query.ClearSearchedForTags
TD.Query.ClickAnimatedEmojiMessage
TD.Query.ClickChatSponsoredMessage
TD.Query.ClickPremiumSubscriptionButton
TD.Query.Close
TD.Query.CloseChat
TD.Query.CloseSecretChat
TD.Query.CloseStory
TD.Query.CloseWebApp
TD.Query.CommitPendingPaidMessageReactions
TD.Query.ConfirmQrCodeAuthentication
TD.Query.ConfirmSession
TD.Query.ConnectAffiliateProgram
TD.Query.CreateBasicGroupChat
TD.Query.CreateBusinessChatLink
TD.Query.CreateCall
TD.Query.CreateChatFolder
TD.Query.CreateChatFolderInviteLink
TD.Query.CreateChatInviteLink
TD.Query.CreateChatSubscriptionInviteLink
TD.Query.CreateForumTopic
TD.Query.CreateGroupCall
TD.Query.CreateInvoiceLink
TD.Query.CreateNewBasicGroupChat
TD.Query.CreateNewSecretChat
TD.Query.CreateNewStickerSet
TD.Query.CreateNewSupergroupChat
TD.Query.CreatePrivateChat
TD.Query.CreateSecretChat
TD.Query.CreateSupergroupChat
TD.Query.CreateTemporaryPassword
TD.Query.CreateVideoChat
TD.Query.DeleteAccount
TD.Query.DeleteAllCallMessages
TD.Query.DeleteAllRevokedChatInviteLinks
TD.Query.DeleteBotMediaPreviews
TD.Query.DeleteBusinessChatLink
TD.Query.DeleteBusinessConnectedBot
TD.Query.DeleteChat
TD.Query.DeleteChatBackground
TD.Query.DeleteChatFolder
TD.Query.DeleteChatFolderInviteLink
TD.Query.DeleteChatHistory
TD.Query.DeleteChatMessagesByDate
TD.Query.DeleteChatMessagesBySender
TD.Query.DeleteChatReplyMarkup
TD.Query.DeleteCommands
TD.Query.DeleteDefaultBackground
TD.Query.DeleteFile
TD.Query.DeleteForumTopic
TD.Query.DeleteLanguagePack
TD.Query.DeleteMessages
TD.Query.DeletePassportElement
TD.Query.DeleteProfilePhoto
TD.Query.DeleteQuickReplyShortcut
TD.Query.DeleteQuickReplyShortcutMessages
TD.Query.DeleteRevokedChatInviteLink
TD.Query.DeleteSavedCredentials
TD.Query.DeleteSavedMessagesTopicHistory
TD.Query.DeleteSavedMessagesTopicMessagesByDate
TD.Query.DeleteSavedOrderInfo
TD.Query.DeleteStickerSet
TD.Query.DeleteStory
TD.Query.Destroy
TD.Query.DisableAllSupergroupUsernames
TD.Query.DisableProxy
TD.Query.DiscardCall
TD.Query.DisconnectAffiliateProgram
TD.Query.DisconnectAllWebsites
TD.Query.DisconnectWebsite
TD.Query.DownloadFile
TD.Query.EditBotMediaPreview
TD.Query.EditBusinessChatLink
TD.Query.EditBusinessMessageCaption
TD.Query.EditBusinessMessageLiveLocation
TD.Query.EditBusinessMessageMedia
TD.Query.EditBusinessMessageReplyMarkup
TD.Query.EditBusinessMessageText
TD.Query.EditChatFolder
TD.Query.EditChatFolderInviteLink
TD.Query.EditChatInviteLink
TD.Query.EditChatSubscriptionInviteLink
TD.Query.EditCustomLanguagePackInfo
TD.Query.EditForumTopic
TD.Query.EditInlineMessageCaption
TD.Query.EditInlineMessageLiveLocation
TD.Query.EditInlineMessageMedia
TD.Query.EditInlineMessageReplyMarkup
TD.Query.EditInlineMessageText
TD.Query.EditMessageCaption
TD.Query.EditMessageLiveLocation
TD.Query.EditMessageMedia
TD.Query.EditMessageReplyMarkup
TD.Query.EditMessageSchedulingState
TD.Query.EditMessageText
TD.Query.EditProxy
TD.Query.EditQuickReplyMessage
TD.Query.EditStarSubscription
TD.Query.EditStory
TD.Query.EditStoryCover
TD.Query.EditUserStarSubscription
TD.Query.EnableProxy
TD.Query.EndGroupCall
TD.Query.EndGroupCallRecording
TD.Query.EndGroupCallScreenSharing
TD.Query.FinishFileGeneration
TD.Query.ForwardMessages
TD.Query.GetAccountTtl
TD.Query.GetActiveSessions
TD.Query.GetAllPassportElements
TD.Query.GetAllStickerEmojis
TD.Query.GetAnimatedEmoji
TD.Query.GetApplicationConfig
TD.Query.GetApplicationDownloadLink
TD.Query.GetArchiveChatListSettings
TD.Query.GetArchivedStickerSets
TD.Query.GetAttachedStickerSets
TD.Query.GetAttachmentMenuBot
TD.Query.GetAuthorizationState
TD.Query.GetAutoDownloadSettingsPresets
TD.Query.GetAutosaveSettings
TD.Query.GetAvailableChatBoostSlots
TD.Query.GetAvailableGifts
TD.Query.GetBackgroundUrl
TD.Query.GetBankCardInfo
TD.Query.GetBasicGroup
TD.Query.GetBasicGroupFullInfo
TD.Query.GetBlockedMessageSenders
TD.Query.GetBotInfoDescription
TD.Query.GetBotInfoShortDescription
TD.Query.GetBotMediaPreviewInfo
TD.Query.GetBotMediaPreviews
TD.Query.GetBotName
TD.Query.GetBusinessChatLinkInfo
TD.Query.GetBusinessChatLinks
TD.Query.GetBusinessConnectedBot
TD.Query.GetBusinessConnection
TD.Query.GetBusinessFeatures
TD.Query.GetCallbackQueryAnswer
TD.Query.GetCallbackQueryMessage
TD.Query.GetChat
TD.Query.GetChatActiveStories
TD.Query.GetChatAdministrators
TD.Query.GetChatArchivedStories
TD.Query.GetChatAvailableMessageSenders
TD.Query.GetChatBoostFeatures
TD.Query.GetChatBoostLevelFeatures
TD.Query.GetChatBoostLink
TD.Query.GetChatBoostLinkInfo
TD.Query.GetChatBoosts
TD.Query.GetChatBoostStatus
TD.Query.GetChatEventLog
TD.Query.GetChatFolder
TD.Query.GetChatFolderChatCount
TD.Query.GetChatFolderChatsToLeave
TD.Query.GetChatFolderDefaultIconName
TD.Query.GetChatFolderInviteLinks
TD.Query.GetChatFolderNewChats
TD.Query.GetChatHistory
TD.Query.GetChatInviteLink
TD.Query.GetChatInviteLinkCounts
TD.Query.GetChatInviteLinkMembers
TD.Query.GetChatInviteLinks
TD.Query.GetChatJoinRequests
TD.Query.GetChatListsToAddChat
TD.Query.GetChatMember
TD.Query.GetChatMessageByDate
TD.Query.GetChatMessageCalendar
TD.Query.GetChatMessageCount
TD.Query.GetChatMessagePosition
TD.Query.GetChatNotificationSettingsExceptions
TD.Query.GetChatPinnedMessage
TD.Query.GetChatPostedToChatPageStories
TD.Query.GetChatRevenueStatistics
TD.Query.GetChatRevenueTransactions
TD.Query.GetChatRevenueWithdrawalUrl
TD.Query.GetChats
TD.Query.GetChatScheduledMessages
TD.Query.GetChatsForChatFolderInviteLink
TD.Query.GetChatSimilarChatCount
TD.Query.GetChatSimilarChats
TD.Query.GetChatSparseMessagePositions
TD.Query.GetChatSponsoredMessages
TD.Query.GetChatStatistics
TD.Query.GetChatStoryInteractions
TD.Query.GetChatsToSendStories
TD.Query.GetCloseFriends
TD.Query.GetCollectibleItemInfo
TD.Query.GetCommands
TD.Query.GetConnectedAffiliateProgram
TD.Query.GetConnectedAffiliatePrograms
TD.Query.GetConnectedWebsites
TD.Query.GetContacts
TD.Query.GetCountries
TD.Query.GetCountryCode
TD.Query.GetCountryFlagEmoji
TD.Query.GetCreatedPublicChats
TD.Query.GetCurrentState
TD.Query.GetCurrentWeather
TD.Query.GetCustomEmojiReactionAnimations
TD.Query.GetCustomEmojiStickers
TD.Query.GetDatabaseStatistics
TD.Query.GetDeepLinkInfo
TD.Query.GetDefaultBackgroundCustomEmojiStickers
TD.Query.GetDefaultChatEmojiStatuses
TD.Query.GetDefaultChatPhotoCustomEmojiStickers
TD.Query.GetDefaultEmojiStatuses
TD.Query.GetDefaultMessageAutoDeleteTime
TD.Query.GetDefaultProfilePhotoCustomEmojiStickers
TD.Query.GetDisallowedChatEmojiStatuses
TD.Query.GetEmojiCategories
TD.Query.GetEmojiReaction
TD.Query.GetEmojiSuggestionsUrl
TD.Query.GetExternalLink
TD.Query.GetExternalLinkInfo
TD.Query.GetFavoriteStickers
TD.Query.GetFile
TD.Query.GetFileDownloadedPrefixSize
TD.Query.GetFileExtension
TD.Query.GetFileMimeType
TD.Query.GetForumTopic
TD.Query.GetForumTopicDefaultIcons
TD.Query.GetForumTopicLink
TD.Query.GetForumTopics
TD.Query.GetGameHighScores
TD.Query.GetGiftUpgradePreview
TD.Query.GetGiveawayInfo
TD.Query.GetGreetingStickers
TD.Query.GetGrossingWebAppBots
TD.Query.GetGroupCall
TD.Query.GetGroupCallInviteLink
TD.Query.GetGroupCallStreams
TD.Query.GetGroupCallStreamSegment
TD.Query.GetGroupsInCommon
TD.Query.GetImportedContactCount
TD.Query.GetInactiveSupergroupChats
TD.Query.GetInlineGameHighScores
TD.Query.GetInlineQueryResults
TD.Query.GetInstalledBackgrounds
TD.Query.GetInstalledStickerSets
TD.Query.GetInternalLink
TD.Query.GetInternalLinkType
TD.Query.GetJsonString
TD.Query.GetJsonValue
TD.Query.GetKeywordEmojis
TD.Query.GetLanguagePackInfo
TD.Query.GetLanguagePackString
TD.Query.GetLanguagePackStrings
TD.Query.GetLinkPreview
TD.Query.GetLocalizationTargetInfo
TD.Query.GetLoginUrl
TD.Query.GetLoginUrlInfo
TD.Query.GetLogStream
TD.Query.GetLogTags
TD.Query.GetLogTagVerbosityLevel
TD.Query.GetLogVerbosityLevel
TD.Query.GetMainWebApp
TD.Query.GetMapThumbnailFile
TD.Query.GetMarkdownText
TD.Query.GetMe
TD.Query.GetMenuButton
TD.Query.GetMessage
TD.Query.GetMessageAddedReactions
TD.Query.GetMessageAvailableReactions
TD.Query.GetMessageEffect
TD.Query.GetMessageEmbeddingCode
TD.Query.GetMessageFileType
TD.Query.GetMessageImportConfirmationText
TD.Query.GetMessageLink
TD.Query.GetMessageLinkInfo
TD.Query.GetMessageLocally
TD.Query.GetMessageProperties
TD.Query.GetMessagePublicForwards
TD.Query.GetMessageReadDate
TD.Query.GetMessages
TD.Query.GetMessageStatistics
TD.Query.GetMessageThread
TD.Query.GetMessageThreadHistory
TD.Query.GetMessageViewers
TD.Query.GetNetworkStatistics
TD.Query.GetNewChatPrivacySettings
TD.Query.GetOption
TD.Query.GetOwnedBots
TD.Query.GetOwnedStickerSets
TD.Query.GetPassportAuthorizationForm
TD.Query.GetPassportAuthorizationFormAvailableElements
TD.Query.GetPassportElement
TD.Query.GetPasswordState
TD.Query.GetPaymentForm
TD.Query.GetPaymentReceipt
TD.Query.GetPhoneNumberInfo
TD.Query.GetPhoneNumberInfoSync
TD.Query.GetPollVoters
TD.Query.GetPreferredCountryLanguage
TD.Query.GetPremiumFeatures
TD.Query.GetPremiumGiftCodePaymentOptions
TD.Query.GetPremiumInfoSticker
TD.Query.GetPremiumLimit
TD.Query.GetPremiumState
TD.Query.GetPremiumStickerExamples
TD.Query.GetPremiumStickers
TD.Query.GetPreparedInlineMessage
TD.Query.GetProxies
TD.Query.GetProxyLink
TD.Query.GetPushReceiverId
TD.Query.GetReadDatePrivacySettings
TD.Query.GetRecentEmojiStatuses