-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocument_type.go
20 lines (16 loc) · 928 Bytes
/
document_type.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package telebot
type sendDocumentParams struct {
ChatID any `json:"chat_id"`
Document *File `json:"document" file:"1"`
BusinessID *BusinessID `json:"business_connection_id,omitempty"`
ThreadID *MessageThreadID `json:"message_thread_id,omitempty"`
Caption *string `json:"caption,omitempty"`
ParseMode ParseMode `json:"parse_mode,omitempty"`
Entities []Entity `json:"caption_entities,omitempty"`
DisableNotification *bool `json:"disable_notification,omitempty"`
Protected *bool `json:"protect_content,omitempty"`
ReplyParameters *ReplyParameters `json:"reply_parameters,omitempty"`
ReplyMarkup ReplyMarkup `json:"reply_markup,omitempty"`
Thumbnail *File `json:"thumbnail,omitempty" file:"1"`
DisableContentTypeDetection *bool `json:"disable_content_type_detection,omitempty"`
}