mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 17:55:35 +01:00
31 lines
840 B
Markdown
31 lines
840 B
Markdown
|
---
|
||
|
title: "decryptedMessageMediaGeoPoint"
|
||
|
description: "GeoPoint attached to an encrypted message."
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: decryptedMessageMediaGeoPoint\_8
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
GeoPoint attached to an encrypted message.
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|lat|[double](/API_docs/types/double.html) | Yes|Latitude of point|
|
||
|
|long|[double](/API_docs/types/double.html) | Yes|Longitude of point|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [DecryptedMessageMedia](/API_docs/types/DecryptedMessageMedia.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$decryptedMessageMediaGeoPoint_8 = ['_' => 'decryptedMessageMediaGeoPoint', 'lat' => double, 'long' => double];
|
||
|
```
|