MadelineProtoDocs/old_docs/API_docs_v109/constructors/emojiURL.md

39 lines
1.0 KiB
Markdown
Raw Normal View History

2020-03-06 12:24:14 +01:00
---
title: emojiURL
description: An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: emojiURL
[Back to constructors index](index.md)
An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|An HTTP URL which can be used to automatically log in into translation platform and suggest new emoji replacements. The URL will be valid for 30 seconds after generation|
### Type: [EmojiURL](../types/EmojiURL.md)
### Example:
```php
$emojiURL = ['_' => 'emojiURL', 'url' => 'string'];
```
Or, if you're into Lua:
```lua
emojiURL={_='emojiURL', url='string'}
```