MadelineProtoDocs/old_docs/API_docs_v30/constructors/inputMediaPhotoExternal.md

40 lines
927 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: inputMediaPhotoExternal
description: New photo that will be uploaded by the server using the specified URL
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaPhotoExternal
[Back to constructors index](index.md)
New photo that will be uploaded by the server using the specified URL
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL of the photo|
|ttl\_seconds|[int](../types/int.md) | Optional|Self-destruct time to live of photo|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaPhotoExternal = ['_' => 'inputMediaPhotoExternal', 'url' => 'string', 'ttl_seconds' => int];
```
Or, if you're into Lua:
```lua
inputMediaPhotoExternal={_='inputMediaPhotoExternal', url='string', ttl_seconds=int}
```