MadelineProtoDocs/docs/API_docs/constructors/emojiURL.md

39 lines
1.0 KiB
Markdown
Raw Normal View History

2019-03-29 21:12:30 +01:00
---
title: emojiURL
2019-12-27 17:48:04 +01:00
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
2019-03-29 21:12:30 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: emojiURL
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
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
2019-03-29 21:12:30 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|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|
2019-03-29 21:12:30 +01:00
### Type: [EmojiURL](../types/EmojiURL.md)
### Example:
```php
$emojiURL = ['_' => 'emojiURL', 'url' => 'string'];
```
Or, if you're into Lua:
```lua
emojiURL={_='emojiURL', url='string'}
```