1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 16:46:56 +01:00
MadelineProto/docs/TD_docs/constructors/inputMessageLocation.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

45 lines
773 B
Markdown

---
title: inputMessageLocation
description: Message with location
---
## Constructor: inputMessageLocation
[Back to constructors index](index.md)
Message with location
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|location|[location](../types/location.md) | Yes|Location to send|
### Type: [InputMessageContent](../types/InputMessageContent.md)
### Example:
```
$inputMessageLocation = ['_' => 'inputMessageLocation', 'location' => location];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputMessageLocation", "location": location}
```
Or, if you're into Lua:
```
inputMessageLocation={_='inputMessageLocation', location=location}
```