1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 02:56:57 +01:00
MadelineProto/docs/TD_docs/constructors/inputMessageLocation.md
2017-07-23 16:11:02 +02:00

776 B

title description
inputMessageLocation Message with location

Constructor: inputMessageLocation

Back to constructors index

Message with location

Attributes:

Name Type Required Description
location location Yes Location to send

Type: InputMessageContent

Example:

$inputMessageLocation = ['_' => 'inputMessageLocation', 'location' => location, ];

PWRTelegram json-encoded version:

{"_":"inputMessageLocation","location":"location"}

Or, if you're into Lua:

inputMessageLocation={_='inputMessageLocation', location=location, }