Added `editMessageLiveLocation` and `stopMessageLiveLocation` methods
parent
7031d820be
commit
5cbecde819
45
configs.go
45
configs.go
|
@ -597,6 +597,51 @@ func (config LocationConfig) method() string {
|
||||||
return "sendLocation"
|
return "sendLocation"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// LocationConfig contains information about a SendLocation request.
|
||||||
|
type EditMessageLiveLocationConfig struct {
|
||||||
|
BaseEdit
|
||||||
|
Latitude float64 // required
|
||||||
|
Longitude float64 // required
|
||||||
|
}
|
||||||
|
|
||||||
|
// values returns a url.Values representation of EditMessageLiveLocationConfig.
|
||||||
|
func (config EditMessageLiveLocationConfig) values() (url.Values, error) {
|
||||||
|
v, err := config.BaseEdit.values()
|
||||||
|
if err != nil {
|
||||||
|
return v, err
|
||||||
|
}
|
||||||
|
|
||||||
|
v.Add("latitude", strconv.FormatFloat(config.Latitude, 'f', 6, 64))
|
||||||
|
v.Add("longitude", strconv.FormatFloat(config.Longitude, 'f', 6, 64))
|
||||||
|
|
||||||
|
return v, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// method returns Telegram API method name for edit message Live Location.
|
||||||
|
func (config EditMessageLiveLocationConfig) method() string {
|
||||||
|
return "editMessageLiveLocation"
|
||||||
|
}
|
||||||
|
|
||||||
|
// LocationConfig contains information about a StopMessageLiveLocation request.
|
||||||
|
type StopMessageLiveLocationConfig struct {
|
||||||
|
BaseEdit
|
||||||
|
}
|
||||||
|
|
||||||
|
// values returns a url.Values representation of StopMessageLiveLocationConfig.
|
||||||
|
func (config StopMessageLiveLocationConfig) values() (url.Values, error) {
|
||||||
|
v, err := config.BaseEdit.values()
|
||||||
|
if err != nil {
|
||||||
|
return v, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return v, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// method returns Telegram API method name for stop message Live Location.
|
||||||
|
func (config StopMessageLiveLocationConfig) method() string {
|
||||||
|
return "stopMessageLiveLocation"
|
||||||
|
}
|
||||||
|
|
||||||
// VenueConfig contains information about a SendVenue request.
|
// VenueConfig contains information about a SendVenue request.
|
||||||
type VenueConfig struct {
|
type VenueConfig struct {
|
||||||
BaseChat
|
BaseChat
|
||||||
|
|
21
types.go
21
types.go
|
@ -331,9 +331,8 @@ type Contact struct {
|
||||||
|
|
||||||
// Location contains information about a place.
|
// Location contains information about a place.
|
||||||
type Location struct {
|
type Location struct {
|
||||||
Longitude float64 `json:"longitude"`
|
Longitude float64 `json:"longitude"`
|
||||||
Latitude float64 `json:"latitude"`
|
Latitude float64 `json:"latitude"`
|
||||||
LivePeriod int `json:"live_period"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Venue contains information about a venue, including its Location.
|
// Venue contains information about a venue, including its Location.
|
||||||
|
@ -640,12 +639,11 @@ type InlineQueryResultDocument struct {
|
||||||
|
|
||||||
// InlineQueryResultLocation is an inline query response location.
|
// InlineQueryResultLocation is an inline query response location.
|
||||||
type InlineQueryResultLocation struct {
|
type InlineQueryResultLocation struct {
|
||||||
Type string `json:"type"` // required
|
Type string `json:"type"` // required
|
||||||
ID string `json:"id"` // required
|
ID string `json:"id"` // required
|
||||||
Latitude float64 `json:"latitude"` // required
|
Latitude float64 `json:"latitude"` // required
|
||||||
Longitude float64 `json:"longitude"` // required
|
Longitude float64 `json:"longitude"` // required
|
||||||
LivePeriod int `json:"live_period"` // optional
|
Title string `json:"title"` // required
|
||||||
Title string `json:"title"` // required
|
|
||||||
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
ReplyMarkup *InlineKeyboardMarkup `json:"reply_markup,omitempty"`
|
||||||
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
InputMessageContent interface{} `json:"input_message_content,omitempty"`
|
||||||
ThumbURL string `json:"thumb_url"`
|
ThumbURL string `json:"thumb_url"`
|
||||||
|
@ -681,9 +679,8 @@ type InputTextMessageContent struct {
|
||||||
// InputLocationMessageContent contains a location for displaying
|
// InputLocationMessageContent contains a location for displaying
|
||||||
// as an inline query result.
|
// as an inline query result.
|
||||||
type InputLocationMessageContent struct {
|
type InputLocationMessageContent struct {
|
||||||
Latitude float64 `json:"latitude"`
|
Latitude float64 `json:"latitude"`
|
||||||
Longitude float64 `json:"longitude"`
|
Longitude float64 `json:"longitude"`
|
||||||
LivePeriod int `json:"live_period"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// InputVenueMessageContent contains a venue for displaying
|
// InputVenueMessageContent contains a venue for displaying
|
||||||
|
|
Loading…
Reference in New Issue