Layer 220
constructor
inputMediaAreaVenue#b282217f coordinates:MediaAreaCoordinates query_id:long result_id:string = MediaArea;

Parameters

Name Type Description
Coordinates MediaAreaCoordinates The size and location of the media area corresponding to the location sticker on top of the story media.
QueryId long The query_id from messages. bot Results, see here for more info.
ResultId string The id of the chosen result, see here for more info.

Returns

MediaArea

Gogram Example

// Creating InputMediaAreaVenue constructor
obj := &tg.InputMediaAreaVenue{
    Coordinates: &tg.MediaAreaCoordinates{},
    QueryId: int64(0),
    ResultId: "...",
}