MadelineProto/docs/TD_docs/constructors/messageLocation.md

45 lines
727 B
Markdown
Raw Normal View History

---
title: messageLocation
description: Message with location
---
## Constructor: messageLocation
[Back to constructors index](index.md)
Message with location
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|location|[location](../types/location.md) | Yes|Message content|
### Type: [MessageContent](../types/MessageContent.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$messageLocation = ['_' => 'messageLocation', 'location' => location];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "messageLocation", "location": location}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
messageLocation={_='messageLocation', location=location}
```