MadelineProtoDocs/old_docs/API_docs_v105/constructors/inputWebFileLocation.md
2019-09-13 17:13:55 +02:00

40 lines
787 B
Markdown

---
title: inputWebFileLocation
description: Web file location
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputWebFileLocation
[Back to constructors index](index.md)
Web file location
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|access\_hash|[long](../types/long.md) | Yes|Access hash|
### Type: [InputWebFileLocation](../types/InputWebFileLocation.md)
### Example:
```php
$inputWebFileLocation = ['_' => 'inputWebFileLocation', 'url' => 'string', 'access_hash' => long];
```
Or, if you're into Lua:
```lua
inputWebFileLocation={_='inputWebFileLocation', url='string', access_hash=long}
```