Merge pull request #388 from rusq/v2

Add Caption parameter to Voice structure
pull/403/head
demget 4 years ago committed by GitHub
commit 62cfa356f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -161,7 +161,8 @@ type Voice struct {
Duration int `json:"duration"`
// (Optional)
MIME string `json:"mime_type,omitempty"`
Caption string `json:"caption,omitempty"`
MIME string `json:"mime_type,omitempty"`
}
// VideoNote represents a video message (available in Telegram apps

@ -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…
Cancel
Save