MadelineProtoDocs/docs/API_docs/constructors/inputMediaGeoLive.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

47 lines
1023 B
Markdown

---
title: inputMediaGeoLive
description: Media geo live
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaGeoLive
[Back to constructors index](index.md)
Media geo live
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|stopped|[Bool](../types/Bool.md) | Optional|Stopped?|
|geo\_point|[InputGeoPoint](../types/InputGeoPoint.md) | Optional|Geo point|
|period|[int](../types/int.md) | Optional|Period|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaGeoLive = ['_' => 'inputMediaGeoLive', 'stopped' => Bool, 'geo_point' => InputGeoPoint, 'period' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputMediaGeoLive", "stopped": Bool, "geo_point": InputGeoPoint, "period": int}
```
Or, if you're into Lua:
```lua
inputMediaGeoLive={_='inputMediaGeoLive', stopped=Bool, geo_point=InputGeoPoint, period=int}
```