mirror of
https://github.com/tucnak/telebot
synced 2024-11-19 03:25:39 +00:00
Merge pull request #388 from rusq/v2
Add Caption parameter to Voice structure
This commit is contained in:
commit
62cfa356f7
1
media.go
1
media.go
@ -161,6 +161,7 @@ type Voice struct {
|
||||
Duration int `json:"duration"`
|
||||
|
||||
// (Optional)
|
||||
Caption string `json:"caption,omitempty"`
|
||||
MIME string `json:"mime_type,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -213,6 +213,7 @@ func (a *Animation) Send(b *Bot, to Recipient, opt *SendOptions) (*Message, erro
|
||||
func (v *Voice) Send(b *Bot, to Recipient, opt *SendOptions) (*Message, error) {
|
||||
params := map[string]string{
|
||||
"chat_id": to.Recipient(),
|
||||
"caption": v.Caption,
|
||||
}
|
||||
b.embedSendOptions(params, opt)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user