2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: webDocumentNoProxy
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Remote document that can be downloaded without [proxying through telegram](https://core.telegram.org/api/files)
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: webDocumentNoProxy
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Remote document that can be downloaded without [proxying through telegram](https://core.telegram.org/api/files)
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|url|[string](../types/string.md) | Yes|Document URL|
|
|
|
|
|size|[int](../types/int.md) | Yes|File size|
|
|
|
|
|mime\_type|[string](../types/string.md) | Yes|MIME type|
|
2019-06-23 13:07:51 +02:00
|
|
|
|attributes|Array of [DocumentAttribute](../types/DocumentAttribute.md) | Yes|Attributes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [WebDocument](../types/WebDocument.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$webDocumentNoProxy = ['_' => 'webDocumentNoProxy', 'url' => 'string', 'size' => int, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
webDocumentNoProxy={_='webDocumentNoProxy', url='string', size=int, mime_type='string', attributes={DocumentAttribute}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|