MadelineProtoDocs/docs/API_docs/constructors/updateGeoLiveViewed.md

38 lines
693 B
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: updateGeoLiveViewed
description: updateGeoLiveViewed attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateGeoLiveViewed
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|peer|[Peer](../types/Peer.md) | Yes|
|msg\_id|[int](../types/int.md) | Yes|
### 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}
```