MadelineProtoDocs/docs/API_docs/constructors/updateGeoLiveViewed.md

40 lines
821 B
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: updateGeoLiveViewed
2020-06-16 17:50:25 +02:00
description: Live geoposition message was viewed
2020-03-06 12:24:14 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateGeoLiveViewed
[Back to constructors index](index.md)
2020-06-16 17:50:25 +02:00
Live geoposition message was viewed
2020-03-06 12:24:14 +01:00
### Attributes:
2020-06-16 17:50:25 +02:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|peer|[Peer](../types/Peer.md) | Yes|The user that viewed the live geoposition|
|msg\_id|[int](../types/int.md) | Yes|Message ID of geoposition message|
2020-03-06 12:24:14 +01:00
### Type: [Update](../types/Update.md)
### Example:
```php
$updateGeoLiveViewed = ['_' => 'updateGeoLiveViewed', 'peer' => Peer, 'msg_id' => int];
```
Or, if you're into Lua:
```lua
updateGeoLiveViewed={_='updateGeoLiveViewed', peer=Peer, msg_id=int}
```