forked from go-telegram-bot-api/telegram-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathparity_interfaces_test.go
More file actions
54 lines (51 loc) · 1.76 KB
/
parity_interfaces_test.go
File metadata and controls
54 lines (51 loc) · 1.76 KB
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
package tgbotapi
var (
_ Chattable = SendChecklistConfig{}
_ Chattable = EditMessageChecklistConfig{}
_ Chattable = SendMessageDraftConfig{}
_ Chattable = ApproveSuggestedPostConfig{}
_ Chattable = DeclineSuggestedPostConfig{}
_ Chattable = UserProfileAudiosConfig{}
_ Chattable = SetPassportDataErrorsConfig{}
_ Chattable = GetManagedBotTokenConfig{}
_ Chattable = ReplaceManagedBotTokenConfig{}
_ Chattable = GetMyStarBalanceConfig{}
_ Chattable = GetBusinessAccountStarBalanceConfig{}
_ Chattable = TransferBusinessAccountStarsConfig{}
_ Chattable = GetUserGiftsConfig{}
_ Chattable = GetChatGiftsConfig{}
_ Chattable = GetBusinessAccountGiftsConfig{}
_ Chattable = ConvertGiftToStarsConfig{}
_ Chattable = UpgradeGiftConfig{}
_ Chattable = TransferGiftConfig{}
_ Chattable = GiftPremiumSubscriptionConfig{}
_ Chattable = SetBusinessAccountNameConfig{}
_ Chattable = SetBusinessAccountUsernameConfig{}
_ Chattable = SetBusinessAccountBioConfig{}
_ Chattable = SetBusinessAccountGiftSettingsConfig{}
_ Chattable = PostStoryConfig{}
_ Chattable = EditStoryConfig{}
_ Chattable = RepostStoryConfig{}
_ Chattable = DeleteStoryConfig{}
_ Chattable = SetMyProfilePhotoConfig{}
_ Chattable = RemoveMyProfilePhotoConfig{}
_ Chattable = SetBusinessAccountProfilePhotoConfig{}
_ Chattable = RemoveBusinessAccountProfilePhotoConfig{}
_ Chattable = SavePreparedKeyboardButtonConfig{}
_ Chattable = ChatMemberCountConfig{}
)
var (
_ Fileable = SetMyProfilePhotoConfig{}
_ Fileable = SetBusinessAccountProfilePhotoConfig{}
_ Fileable = PostStoryConfig{}
_ Fileable = EditStoryConfig{}
)
var (
_ MessageId
_ LoginUrl
_ InlineQueryResultGif
_ InlineQueryResultCachedGif
_ InlineQueryResultMpeg4Gif
_ InlineQueryResultCachedMpeg4Gif
_ TransactionPartnerTelegramApi
)