-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontext_type.go
37 lines (26 loc) · 926 Bytes
/
context_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
package telebot
// Context wraps an update and represents the context of the current event.
type Context interface {
// Bot returns the bot instance.
Bot() Bot
// Update returns the original update.
Update() Update
// Message returns stored *AccessibleMessage if such presented.
Message() *AccessibleMessage
// Callback returns stored callback if such presented.
Callback() *Callback
// Query returns stored query if such presented.
Query() *InlineQuery
// Get retrieves data from the context.
Get(key string) any
// Set saves data in the context.
Set(key string, val any)
ReplyTo(msg Message, text string, options ...any) (Message, error)
Reply(text string, options ...any) (Message, error)
Send(s any, options ...any) (Message, error)
EditOrReply(text string, options ...any) (Message, error)
Edit(text string, options ...any) (Message, error)
Text() string
Sender() *User
Args() []string
}