-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
types.go
45 lines (42 loc) · 1.81 KB
/
types.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
package inline
const (
// PhotoType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultphoto.
PhotoType = "photo"
// ArticleType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultarticle.
ArticleType = "article"
// VideoType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultvideo.
VideoType = "video"
// AudioType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultaudio.
AudioType = "audio"
// DocumentType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultdocument.
DocumentType = "document"
// GIFType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultgif.
GIFType = "gif"
// MPEG4GIFType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultmpeg4gif.
MPEG4GIFType = "mpeg4_gif"
// VoiceType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultvoice.
VoiceType = "voice"
// StickerType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultsticker.
StickerType = "sticker"
// LocationType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultlocation.
LocationType = "location"
// VenueType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultvenue.
VenueType = "venue"
// ContactType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultcontact.
ContactType = "contact"
// GameType is a type string of inline result.
// See https://core.telegram.org/bots/api#inlinequeryresultgame.
GameType = "game"
)