-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhttp_client_type.go
373 lines (369 loc) · 9.87 KB
/
http_client_type.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
package telebot
type method int
const (
methodGetUpdates method = iota
methodSetWebhook
methodDeleteWebhook
methodGetWebhookInfo
methodGetMe
methodLogOut
methodClose
methodSendMessage
methodEditMessageText
methodEditMessageCaption
methodEditMessageMedia
methodEditMessageLiveLocation
methodStopMessageLiveLocation
methodEditMessageReplyMarkup
methodStopPoll
methodDeleteMessage
methodDeleteMessages
methodForwardMessage
methodForwardMessages
methodCopyMessage
methodCopyMessages
methodSendPhoto
methodSendAudio
methodSendDocument
methodSendVideo
methodSendAnimation
methodSendVoice
methodSendVideoNote
methodSendMediaGroup
methodSendLocation
methodSendVenue
methodSendContact
methodSendPoll
methodSendDice
methodSendChatAction
methodSetMessageReaction
methodGetUserProfilePhotos
methodGetFile
methodBanChatMember
methodUnbanChatMember
methodRestrictChatMember
methodPromoteChatMember
methodSetChatAdministratorCustomTitle
methodBanChatSenderChat
methodUnbanChatSenderChat
methodSetChatPermissions
methodExportChatInviteLink
methodCreateChatInviteLink
methodEditChatInviteLink
methodRevokeChatInviteLink
methodApproveChatJoinRequest
methodDeclineChatJoinRequest
methodSetChatPhoto
methodDeleteChatPhoto
methodSetChatTitle
methodSetChatDescription
methodPinChatMessage
methodUnpinChatMessage
methodUnpinAllChatMessages
methodLeaveChat
methodGetChat
methodGetChatAdministrators
methodGetChatMemberCount
methodGetChatMember
methodSetChatStickerSet
methodDeleteChatStickerSet
methodGetForumTopicIconStickers
methodCreateForumTopic
methodEditForumTopic
methodCloseForumTopic
methodReopenForumTopic
methodDeleteForumTopic
methodUnpinAllForumTopicMessages
methodEditGeneralForumTopic
methodCloseGeneralForumTopic
methodReopenGeneralForumTopic
methodHideGeneralForumTopic
methodUnhideGeneralForumTopic
methodUnpinAllGeneralForumTopicMessages
methodAnswerCallbackQuery
methodGetUserChatBoosts
methodSetMyCommands
methodDeleteMyCommands
methodGetMyCommands
methodSetMyName
methodGetMyName
methodSetMyDescription
methodGetMyDescription
methodSetMyShortDescription
methodGetMyShortDescription
methodSetChatMenuButton
methodGetChatMenuButton
methodSetMyDefaultAdministratorRights
methodGetMyDefaultAdministratorRights
methodSendSticker
methodGetStickerSet
methodGetCustomEmojiStickers
methodUploadStickerFile
methodCreateNewStickerSet
methodAddStickerToSet
methodSetStickerPositionInSet
methodDeleteStickerFromSet
methodSetStickerEmojiList
methodSetStickerKeywords
methodSetStickerMaskPosition
methodSetStickerSetTitle
methodSetStickerSetThumbnail
methodSetCustomEmojiStickerSetThumbnail
methodDeleteStickerSet
methodAnswerInlineQuery
methodAnswerWebAppQuery
methodSentWebAppMessage
methodSendInvoice
methodCreateInvoiceLink
methodAnswerShippingQuery
methodAnswerPreCheckoutQuery
methodSetPassportDataErrors
methodSendGame
methodSetGameScore
methodGetGameHighScores
methodGetBusinessConnection
)
func (m method) String() string {
switch m {
case methodGetUpdates:
return "getUpdates"
case methodSetWebhook:
return "setWebhook"
case methodDeleteWebhook:
return "deleteWebhook"
case methodGetWebhookInfo:
return "getWebhookInfo"
case methodGetMe:
return "getMe"
case methodLogOut:
return "logOut"
case methodClose:
return "close"
case methodSendMessage:
return "sendMessage"
case methodEditMessageText:
return "editMessageText"
case methodEditMessageCaption:
return "editMessageCaption"
case methodEditMessageMedia:
return "editMessageMedia"
case methodEditMessageLiveLocation:
return "editMessageLiveLocation"
case methodStopMessageLiveLocation:
return "stopMessageLiveLocation"
case methodEditMessageReplyMarkup:
return "editMessageReplyMarkup"
case methodStopPoll:
return "stopPoll"
case methodDeleteMessages:
return "deleteMessages"
case methodForwardMessage:
return "forwardMessage"
case methodForwardMessages:
return "forwardMessages"
case methodCopyMessages:
return "copyMessages"
case methodSendPhoto:
return "sendPhoto"
case methodSendAudio:
return "sendAudio"
case methodSendDocument:
return "sendDocument"
case methodSendVideo:
return "sendVideo"
case methodSendAnimation:
return "sendAnimation"
case methodSendVoice:
return "sendVoice"
case methodSendVideoNote:
return "sendVideoNote"
case methodSendMediaGroup:
return "sendMediaGroup"
case methodSendLocation:
return "sendLocation"
case methodSendVenue:
return "sendVenue"
case methodSendContact:
return "sendContact"
case methodSendPoll:
return "sendPoll"
case methodSendDice:
return "sendDice"
case methodSendChatAction:
return "sendChatAction"
case methodSetMessageReaction:
return "setMessageReaction"
case methodGetUserProfilePhotos:
return "getUserProfilePhotos"
case methodGetFile:
return "getFile"
case methodBanChatMember:
return "banChatMember"
case methodUnbanChatMember:
return "unbanChatMember"
case methodRestrictChatMember:
return "restrictChatMember"
case methodPromoteChatMember:
return "promoteChatMember"
case methodSetChatAdministratorCustomTitle:
return "setChatAdministratorCustomTitle"
case methodBanChatSenderChat:
return "banChatSenderChat"
case methodUnbanChatSenderChat:
return "unbanChatSenderChat"
case methodSetChatPermissions:
return "setChatPermissions"
case methodExportChatInviteLink:
return "exportChatInviteLink"
case methodCreateChatInviteLink:
return "createChatInviteLink"
case methodEditChatInviteLink:
return "editChatInviteLink"
case methodRevokeChatInviteLink:
return "revokeChatInviteLink"
case methodApproveChatJoinRequest:
return "approveChatJoinRequest"
case methodDeclineChatJoinRequest:
return "declineChatJoinRequest"
case methodSetChatPhoto:
return "setChatPhoto"
case methodDeleteChatPhoto:
return "deleteChatPhoto"
case methodSetChatTitle:
return "setChatTitle"
case methodSetChatDescription:
return "setChatDescription"
case methodPinChatMessage:
return "pinChatMessage"
case methodUnpinChatMessage:
return "unpinChatMessage"
case methodUnpinAllChatMessages:
return "unpinAllChatMessages"
case methodLeaveChat:
return "leaveChat"
case methodGetChat:
return "getChat"
case methodGetChatAdministrators:
return "getChatAdministrators"
case methodGetChatMemberCount:
return "getChatMemberCount"
case methodGetChatMember:
return "getChatMember"
case methodSetChatStickerSet:
return "setChatStickerSet"
case methodDeleteChatStickerSet:
return "deleteChatStickerSet"
case methodGetForumTopicIconStickers:
return "getForumTopicIconStickers"
case methodCreateForumTopic:
return "createForumTopic"
case methodEditForumTopic:
return "editForumTopic"
case methodCloseForumTopic:
return "closeForumTopic"
case methodReopenForumTopic:
return "reopenForumTopic"
case methodDeleteForumTopic:
return "deleteForumTopic"
case methodUnpinAllForumTopicMessages:
return "unpinAllForumTopicMessages"
case methodEditGeneralForumTopic:
return "editGeneralForumTopic"
case methodCloseGeneralForumTopic:
return "closeGeneralForumTopic"
case methodReopenGeneralForumTopic:
return "reopenGeneralForumTopic"
case methodHideGeneralForumTopic:
return "hideGeneralForumTopic"
case methodUnhideGeneralForumTopic:
return "unhideGeneralForumTopic"
case methodUnpinAllGeneralForumTopicMessages:
return "unpinAllGeneralForumTopicMessages"
case methodAnswerCallbackQuery:
return "answerCallbackQuery"
case methodGetUserChatBoosts:
return "getUserChatBoosts"
case methodSetMyCommands:
return "setMyCommands"
case methodDeleteMyCommands:
return "deleteMyCommands"
case methodGetMyCommands:
return "getMyCommands"
case methodSetMyName:
return "setMyName"
case methodGetMyName:
return "getMyName"
case methodSetMyDescription:
return "setMyDescription"
case methodGetMyDescription:
return "getMyDescription"
case methodSetMyShortDescription:
return "setMyShortDescription"
case methodGetMyShortDescription:
return "getMyShortDescription"
case methodSetChatMenuButton:
return "setChatMenuButton"
case methodGetChatMenuButton:
return "getChatMenuButton"
case methodSetMyDefaultAdministratorRights:
return "setMyDefaultAdministratorRights"
case methodGetMyDefaultAdministratorRights:
return "getMyDefaultAdministratorRights"
case methodSendSticker:
return "sendSticker"
case methodGetStickerSet:
return "getStickerSet"
case methodGetCustomEmojiStickers:
return "getCustomEmojiStickers"
case methodUploadStickerFile:
return "uploadStickerFile"
case methodCreateNewStickerSet:
return "createNewStickerSet"
case methodAddStickerToSet:
return "addStickerToSet"
case methodSetStickerPositionInSet:
return "setStickerPositionInSet"
case methodDeleteStickerFromSet:
return "deleteStickerFromSet"
case methodSetStickerEmojiList:
return "setStickerEmojiList"
case methodSetStickerKeywords:
return "setStickerKeywords"
case methodSetStickerSetTitle:
return "setStickerSetTitle"
case methodSetStickerSetThumbnail:
return "setStickerSetThumbnail"
case methodDeleteStickerSet:
return "deleteStickerSet"
case methodAnswerInlineQuery:
return "answerInlineQuery"
case methodAnswerWebAppQuery:
return "answerWebAppQuery"
case methodSentWebAppMessage:
return "sentWebAppMessage"
case methodSendInvoice:
return "sendInvoice"
case methodCreateInvoiceLink:
return "createInvoiceLink"
case methodAnswerShippingQuery:
return "answerShippingQuery"
case methodAnswerPreCheckoutQuery:
return "answerPreCheckoutQuery"
case methodSetPassportDataErrors:
return "setPassportDataErrors"
case methodSendGame:
return "sendGame"
case methodSetGameScore:
return "setGameScore"
case methodGetGameHighScores:
return "getGameHighScores"
case methodSetStickerMaskPosition:
return "setStickerMaskPosition"
case methodSetCustomEmojiStickerSetThumbnail:
return "setCustomEmojiStickerSetThumbnail"
case methodGetBusinessConnection:
return "getBusinessConnection"
default:
panic("telebot: unknown method")
}
}