BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
irazasyed
/
telegram-bot-sdk
/
src
/
Objects
/
InlineQuery
📤 Upload
📝 New File
📁 New Folder
Close
Editing: InlineQueryResultLocation.php
<?php namespace Telegram\Bot\Objects\InlineQuery; /** * Class InlineQueryResultLocation. * * Represents a location on a map. By default, the location will be sent by the user. * Alternatively, you can use input_message_content to send a message with the specified content instead of the location. * * <code> * [ * 'id' => '', // string - Required. Unique identifier for this result, 1-64 Bytes * 'latitude' => '', // float - Required. Location latitude in degrees * 'longitude' => '', // float - Required. Location longitude in degrees * 'title' => '', // string - Required. Location title * 'horizontal_accuracy' => '', // float - (Optional). The radius of uncertainty for the location, measured in meters; 0-1500 * 'live_period' => '', // int - (Optional). Period in seconds for which the location can be updated, should be between 60 and 86400. * 'heading' => '', // int - (Optional). For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified. * 'proximity_alert_radius' => '', // int - (Optional). For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified. * 'reply_markup' => '', // InlineKeyboardMarkup - (Optional). Inline keyboard attached to the message * 'input_message_content' => '', // InputMessageContent - (Optional). Content of the message to be sent instead of the location * 'thumb_url' => '', // string - (Optional). Url of the thumbnail for the result * 'thumb_width' => '', // int - (Optional). Thumbnail width * 'thumb_height' => '', // int - (Optional). Thumbnail height * ] * </code> * * @link https://core.telegram.org/bots/api#inlinequeryresultlocation * * @method $this setId(string) Unique identifier for this result, 1-64 Bytes * @method $this setLatitude(float) Location latitude in degrees * @method $this setLongitude(float) Location longitude in degrees * @method $this setTitle(string) Location title * @method $this setReplyMarkup(object) (Optional). Inline keyboard attached to the message * @method $this setInputMessageContent(object) (Optional). Content of the message to be sent instead of the location * @method $this setThumbUrl(string) (Optional). Url of the thumbnail for the result * @method $this setThumbWidth(int) (Optional). Thumbnail width * @method $this setThumbHeight(int) (Optional). Thumbnail height */ class InlineQueryResultLocation extends InlineBaseObject { protected $type = 'location'; }
Save
Cancel