-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathenums.go
More file actions
42 lines (34 loc) · 1.15 KB
/
Copy pathenums.go
File metadata and controls
42 lines (34 loc) · 1.15 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
package ParsBale
type ChatAction string
const (
ChatActionTyping ChatAction = "typing"
ChatActionUploadPhoto ChatAction = "upload_photo"
ChatActionRecordVideo ChatAction = "record_video"
ChatActionUploadVideo ChatAction = "upload_video"
ChatActionRecordVoice ChatAction = "record_voice"
ChatActionUploadVoice ChatAction = "upload_voice"
ChatActionChooseSticker ChatAction = "choose_sticker"
)
type ParseMode string
const (
ModeMarkdown ParseMode = "Markdown"
ModeHTML ParseMode = "HTML"
)
type ChatType string
const (
ChatTypePrivate ChatType = "private"
ChatTypeGroup ChatType = "group"
ChatTypeChannel ChatType = "channel"
)
type MessageEntityType string
const (
EntityMention MessageEntityType = "mention"
EntityBotCommand MessageEntityType = "bot_command"
EntityURL MessageEntityType = "url"
EntityEmail MessageEntityType = "email"
EntityBold MessageEntityType = "bold"
EntityItalic MessageEntityType = "italic"
EntityCode MessageEntityType = "code"
EntityPre MessageEntityType = "pre"
EntityTextLink MessageEntityType = "text_link"
)