Fix missing ParseMode in InlineQueryResultVideo

ParseMode for this type actually exists, but was missed in the original repo.
https://core.telegram.org/bots/api#inlinequeryresultvideo
master^2
bobra 2024-05-15 02:57:25 +02:00 committed by GitHub
parent f8ef3a5696
commit d0fa8e929e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 2 deletions

View File

@ -4406,9 +4406,15 @@ type InlineQueryResultVideo struct {
//
// optional
Caption string `json:"caption,omitempty"`
// Width video width
// ParseMode mode for parsing entities in the video caption.
// See formatting options for more details
// (https://core.telegram.org/bots/api#formatting-options).
//
// optional
ParseMode string `json:"parse_mode,omitempty"`
// Width video width
//
// optional
Width int `json:"video_width,omitempty"`
// Height video height
//
@ -4448,7 +4454,7 @@ type InlineQueryResultVoice struct {
//
// optional
Caption string `json:"caption,omitempty"`
// ParseMode mode for parsing entities in the video caption.
// ParseMode mode for parsing entities in the voice caption.
// See formatting options for more details
// (https://core.telegram.org/bots/api#formatting-options).
//