MadelineProtoDocs/docs/API_docs/constructors/webDocumentNoProxy.md

48 lines
1.2 KiB
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: webDocumentNoProxy
2018-12-26 02:56:50 +01:00
description: Web document no proxy
2018-06-29 13:59:08 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: webDocumentNoProxy
[Back to constructors index](index.md)
2018-12-26 02:56:50 +01:00
Web document no proxy
2018-06-29 13:59:08 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|size|[int](../types/int.md) | Yes|Size|
|mime\_type|[string](../types/string.md) | Yes|Mime type|
|attributes|Array of [DocumentAttribute](../types/DocumentAttribute.md) | Yes|Attributes|
2018-06-29 13:59:08 +02:00
### Type: [WebDocument](../types/WebDocument.md)
### Example:
```php
2018-06-29 13:59:08 +02:00
$webDocumentNoProxy = ['_' => 'webDocumentNoProxy', 'url' => 'string', 'size' => int, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "webDocumentNoProxy", "url": "string", "size": int, "mime_type": "string", "attributes": [DocumentAttribute]}
```
Or, if you're into Lua:
2018-06-29 13:59:08 +02:00
```lua
2018-06-29 13:59:08 +02:00
webDocumentNoProxy={_='webDocumentNoProxy', url='string', size=int, mime_type='string', attributes={DocumentAttribute}}
```