Add omitempty to optional fields

pull/8/head
OvyFlash 2023-07-05 12:13:57 +03:00
parent 7d82083b03
commit 45f563879f
2 changed files with 1 additions and 2 deletions

View File

@ -1274,7 +1274,6 @@ func (config DeleteWebhookConfig) params() (Params, error) {
// InlineQueryResultsButton represents a button to be shown above inline query results. You must use exactly one of the optional fields. // InlineQueryResultsButton represents a button to be shown above inline query results. You must use exactly one of the optional fields.
type InlineQueryResultsButton struct { type InlineQueryResultsButton struct {
//Label text on the button //Label text on the button
//
Text string `json:"text"` Text string `json:"text"`
//Description of the Web App that will be launched when the user presses the button. The Web App will be able to switch back to the inline mode using the method switchInlineQuery inside the Web App. //Description of the Web App that will be launched when the user presses the button. The Web App will be able to switch back to the inline mode using the method switchInlineQuery inside the Web App.
// //

View File

@ -1356,7 +1356,7 @@ type WriteAccessAllowed struct {
//Name of the Web App which was launched from a link //Name of the Web App which was launched from a link
// //
// Optional // Optional
WebAppName string `json:"web_app_name"` WebAppName string `json:"web_app_name,omitempty"`
} }
// VideoChatScheduled represents a service message about a voice chat scheduled // VideoChatScheduled represents a service message about a voice chat scheduled